aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrtz12 <koenig@fagott.pw>2016-10-11 18:53:22 (UTC)
committerrtz12 <koenig@fagott.pw>2016-10-11 18:53:22 (UTC)
commitfbd746aef8c78067593f901afb0f255574392499 (patch)
tree10b91eabfc5696d5e0fe27f1649bd72b9ed461e5 /Makefile
parentbf51b2e4a035a988b9e9cef737966846c619dace (diff)
NSA implementiert
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fbef6fa..452e1d5 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ LESSC := ./node_modules/less/bin/lessc
12 12
13-include $(DEPFILES) 13-include $(DEPFILES)
14 14
15all: $(CSS_FILES) $(LESS_FILES) $(JS_FILES) 15all: $(CSS_FILES) $(LESS_FILES) $(JS_FILES) eventlogging/events.go
16 16
17print_info: 17print_info:
18 @echo $(CSS_FILES) 18 @echo $(CSS_FILES)
@@ -45,12 +45,16 @@ assets/js/%.js: assets_src/js/%.js assets_src/js/%.d .babelrc .npm_update
45 @echo browserify $< -o $@ 45 @echo browserify $< -o $@
46 @$(BROWSERIFY) --debug $< -o $@ -t babelify 46 @$(BROWSERIFY) --debug $< -o $@ -t babelify
47 47
48eventlogging/events.go: eventlogging/events.txt
49 @./bin/generate-events < $< > $@
50
48clean: 51clean:
49 -rm -- $(CSS_FILES) 52 -rm -- $(CSS_FILES)
50 -rm -- $(LESS_FILES) 53 -rm -- $(LESS_FILES)
51 -rm -- $(JS_FILES) 54 -rm -- $(JS_FILES)
52 -rm -- $(DEPFILES) 55 -rm -- $(DEPFILES)
53 -rm -- importer 56 -rm -- importer
57 -rm -- eventlogging/events.go
54 58
55superclean: clean 59superclean: clean
56 -rm -- .npm_update 60 -rm -- .npm_update