1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
binsearchplus/Makefile
2016-10-28 18:34:05 +02:00

69 lines
1.7 KiB
Makefile

CC=coffee
SRCDIR=src
BUILDDIR=build
ALL_SRC_FILES := $(wildcard $(SRCDIR)/*)
ALL_OTHER_SRC_FILES := $(filter-out %.coffee, $(ALL_SRC_FILES))
ALL_OTHER_FILES := $(ALL_OTHER_SRC_FILES:$(SRCDIR)/%=$(BUILDDIR)/%)
SRC=$(wildcard $(SRCDIR)/*.coffee)
BUILD=$(SRC:$(SRCDIR)/%.coffee=$(BUILDDIR)/%.js)
all: other coffee icons
# coffeescript files
coffee: $(BUILD)
$(BUILDDIR)/%.js: $(SRCDIR)/%.coffee
$(CC) -o $(BUILDDIR)/ -c $<
# other files
other: $(ALL_OTHER_FILES)
$(ALL_OTHER_FILES): $(BUILDDIR)/%: $(SRCDIR)/%
cp $< $@
# icons
icons: build/binsearchplus_128.png build/binsearchplus_64.png build/binsearchplus_48.png build/binsearchplus_38.png build/binsearchplus_19.png build/binsearchplus_16.png
build/binsearchplus_128.png:
convert binsearchplus-icon.png -resize 128x128 build/binsearchplus_128.png
build/binsearchplus_64.png:
convert binsearchplus-icon.png -resize 64x64 build/binsearchplus_64.png
build/binsearchplus_48.png:
convert binsearchplus-icon.png -resize 48x48 build/binsearchplus_48.png
build/binsearchplus_38.png:
convert binsearchplus-icon.png -resize 38x38 build/binsearchplus_38.png
build/binsearchplus_19.png:
convert binsearchplus-icon.png -resize 19x19 build/binsearchplus_19.png
build/binsearchplus_16.png:
convert binsearchplus-icon.png -resize 16x16 build/binsearchplus_16.png
# crx building stuff
rsakey: key.pem
crx: binsearchplus.crx
key.pem:
@echo "Generating RSA key in PKCS#8 format."
openssl genrsa 4096 | openssl pkcs8 -topk8 -nocrypt -out $@
binsearchplus.crx: $(ALL_OTHER_FILES) $(BUILD) key.pem
google-chrome --pack-extension="$(BUILDDIR)/" --pack-extension-key="key.pem"
mv $(BUILDDIR).crx $@
# cleanup
.PHONY: clean
clean:
-rm $(BUILDDIR)/*
-rm binsearchplus.crx