Overview
Comment: | Updated to create a Chrome extension (maybe) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 433933e8bfc01e271fd1b70b80f9608efdf2cee8 |
User & Date: | rkeene on 2016-02-04 22:51:54 |
Other Links: | manifest | tags |
Context
2016-02-04
| ||
22:52 | Added more Chrome extension parts check-in: e9e86eb240 user: rkeene tags: trunk | |
22:51 | Updated to create a Chrome extension (maybe) check-in: 433933e8bf user: rkeene tags: trunk | |
22:51 | More work towards a prototypical CACKey JavaScript file check-in: 7fc78ce33e user: rkeene tags: trunk | |
Changes
Modified build/chrome/Makefile from [738bd8073d] to [c9ad2816e9].
9 9 LIBS = $(CACKEY_LIBS) $(PCSC_LIBS) 10 10 CFLAGS = -Wall -I${NACL_SDK_ROOT}/include 11 11 CXXFLAGS = $(CFLAGS) 12 12 13 13 PATH += :${NACL_SDK_ROOT}/toolchain/linux_pnacl/bin 14 14 export PATH 15 15 16 -all: cackey.pexe cackey.nmf 16 +all: cackey.crx 17 + 18 +cackey.crx: cackey.pexe cackey.nmf manifest.json cackey.js 19 + rm -f cackey.crx 20 + zip cackey.crx.new $^ 21 + mv cackey.crx.new cackey.crx 17 22 18 23 cackey.pexe: cackey-chrome.o cackey-chrome-init.o lib/libcackey.a lib/libpcsc.a lib/libz.a 19 24 $(CXX) -o cackey.pexe.new cackey-chrome.o cackey-chrome-init.o $(LIBS) 20 25 $(FINALIZE) cackey.pexe.new 21 26 mv cackey.pexe.new cackey.pexe 22 27 23 28 cackey.nmf: cackey.pexe