Overview
| Comment: | ChromeOS: Added missing UI page |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e5eec2292cb238e8d65bc789738373b2 |
| User & Date: | rkeene on 2016-02-26 19:07:45 |
| Other Links: | manifest | tags |
Context
|
2016-02-26
| ||
| 19:09 | ChromeOS: Updated ignores check-in: a67fe2704f user: rkeene tags: trunk | |
| 19:07 | ChromeOS: Added missing UI page check-in: e5eec2292c user: rkeene tags: trunk | |
| 19:06 | ChromeOS: Renamed files to be more obvious check-in: 6f34302432 user: rkeene tags: trunk | |
Changes
Modified build/chrome/Makefile from [197b36ef78] to [6036bc5b25].
| ︙ | ︙ | |||
28 29 30 31 32 33 34 |
ifeq (,${NACL_SDK_ROOT})
$(error "Please set NACL_SDK_ROOT")
endif
export NACL_SDK_ROOT
all: cackey.zip
| | | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
ifeq (,${NACL_SDK_ROOT})
$(error "Please set NACL_SDK_ROOT")
endif
export NACL_SDK_ROOT
all: cackey.zip
cackey.zip: $(CACKEY_EXECUTABLES) cackey.nmf manifest.json cackey.js google-pcsc.js pin.html pin.js pin-icon.png icon.png ui.html
rm -f cackey.zip
zip cackey.zip.new $^
mv cackey.zip.new cackey.zip
cackey.bc: cackey-chrome-pkcs11.o cackey-chrome-plugin.o lib/libcackey.a lib/libpcsc.a lib/libz.a
$(CXX) $(CXXFLAGS) $(LDFLAGS) -o cackey.bc.new cackey-chrome-pkcs11.o cackey-chrome-plugin.o $(LIBS)
mv cackey.bc.new cackey.bc
|
| ︙ | ︙ |