diff options
author | bptato <nincsnevem662@gmail.com> | 2024-02-01 17:12:51 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-02-01 17:12:51 +0100 |
commit | 0e4fe966ca85bc813c4d6e2cea04020fe099ab22 (patch) | |
tree | f00d963dac6ecf0e6292beb4519514814374384b /Makefile | |
parent | cafdd3d66a1700d4a984080a1389f43269f7d5e1 (diff) | |
download | chawan-0e4fe966ca85bc813c4d6e2cea04020fe099ab22.tar.gz |
Makefile: fix about.nim deps
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile index ba29138f..50c34085 100644 --- a/Makefile +++ b/Makefile @@ -116,7 +116,8 @@ $(OUTDIR_CGI_BIN)/http: adapter/protocol/http.nim adapter/protocol/curlwrap.nim $(NIMC) $(FLAGS) --nimcache:"$(OBJDIR)/$(TARGET)/http" -d:curlLibName:$(CURLLIBNAME) \ -o:"$(OUTDIR_CGI_BIN)/http" adapter/protocol/http.nim -$(OUTDIR_CGI_BIN)/about: adapter/protocol/about.nim +$(OUTDIR_CGI_BIN)/about: adapter/protocol/about.nim res/chawan.html \ + res/license.html @mkdir -p "$(OUTDIR_CGI_BIN)" $(NIMC) $(FLAGS) --nimcache:"$(OBJDIR)/$(TARGET)/about" -o:"$(OUTDIR_CGI_BIN)/about" adapter/protocol/about.nim |