aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrtz12 <koenig@fagott.pw>2016-11-15 17:29:02 (UTC)
committerrtz12 <koenig@fagott.pw>2016-11-15 17:29:02 (UTC)
commit0ad174d7329e02b3f644614de0758789bb3677d4 (patch)
treee49a659c0b89bdec07cde778850b7fe002ac27ea /Makefile
parente02ad854383265db216ed92b10c4f12408999d6a (diff)
Verrückter Anilist Import
Bestes Feature 2k16. Hashtag Make Grilist Great Again.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 873886a..27520e5 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,7 @@ print_info:
25 25
26$(NAME): $(TARGET) 26$(NAME): $(TARGET)
27 27
28$(TARGET): eventlogging/events.go 28$(TARGET): eventlogging/events.go util/confusables.go
29 go build -o $@ 29 go build -o $@
30 30
31.npm_update: package.json 31.npm_update: package.json
@@ -62,6 +62,9 @@ assets/js/%.js: assets_src/js/%.js assets_src/js/%.d .babelrc .npm_update
62eventlogging/events.go: eventlogging/events.txt 62eventlogging/events.go: eventlogging/events.txt
63 ./bin/generate-events < $< > $@ 63 ./bin/generate-events < $< > $@
64 64
65util/confusables.go: util/confusables.txt
66 ./bin/generate-confusables < $< > $@
67
65clean: 68clean:
66 -rm -- $(BINARY_PATH)/$(NAME) 69 -rm -- $(BINARY_PATH)/$(NAME)
67 -rm -- $(CSS_FILES) 70 -rm -- $(CSS_FILES)
@@ -70,6 +73,7 @@ clean:
70 -rm -- $(DEPFILES) 73 -rm -- $(DEPFILES)
71 -rm -- importer 74 -rm -- importer
72 -rm -- eventlogging/events.go 75 -rm -- eventlogging/events.go
76 -rm -- util/confusables.go
73 77
74superclean: clean 78superclean: clean
75 -rm -- .npm_update 79 -rm -- .npm_update