diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-06-30 17:31:46 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-06-30 17:31:46 +0200 |
commit | 722127ef4059020876f708b1d5406c04fd07b0da (patch) | |
tree | 1a849e4c8eae688a9e51aaaaaff76d56ca79f171 /import | |
parent | cc5689eaf4f7cfa158e31107906434da9aed62bf (diff) |
WIP user api
Diffstat (limited to 'import')
-rw-r--r-- | import/jmdict/makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/import/jmdict/makefile b/import/jmdict/makefile index d19c9af..fdbca6c 100644 --- a/import/jmdict/makefile +++ b/import/jmdict/makefile @@ -1,6 +1,8 @@ CURL = curl UNZIP = unzip +.PHONY: clean all + all: jmdict.dict.sql jmdict.zip: @@ -11,3 +13,6 @@ jmdict.json: jmdict.zip jmdict.dict.sql: jmdict.json jmdict.ts deno run -A --unstable ./jmdict.ts < $< > $@ + +clean: + $(RM) jmdict.dict.sql jmdict.sql jmdict.json jmdict.zip |