diff options
author | bptato <nincsnevem662@gmail.com> | 2023-12-12 20:28:54 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-12-12 20:49:30 +0100 |
commit | a6166c4dfc7b028761a884127cc78aeb0056ed8d (patch) | |
tree | e19cda9ba3e46fa4cf42aa383c3530d472282c10 /Makefile | |
parent | 1dcb9cf6567145a0d3705b95717ccbf37eac6140 (diff) | |
download | chawan-a6166c4dfc7b028761a884127cc78aeb0056ed8d.tar.gz |
Move out file: protocol handling to adapter/
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 87b117ed..55b91fb8 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ endif FLAGS += --nimcache:"$(OBJDIR)/$(TARGET)" .PHONY: all -all: $(OUTDIR_BIN)/cha $(OUTDIR_LIBEXEC)/gopher2html $(OUTDIR_CGI_BIN)/gmifetch $(OUTDIR_LIBEXEC)/gmi2html $(OUTDIR_CGI_BIN)/cha-finger $(OUTDIR_CGI_BIN)/about $(OUTDIR_CGI_BIN)/data +all: $(OUTDIR_BIN)/cha $(OUTDIR_LIBEXEC)/gopher2html $(OUTDIR_CGI_BIN)/gmifetch $(OUTDIR_LIBEXEC)/gmi2html $(OUTDIR_CGI_BIN)/cha-finger $(OUTDIR_CGI_BIN)/about $(OUTDIR_CGI_BIN)/data $(OUTDIR_CGI_BIN)/file $(OUTDIR_BIN)/cha: lib/libquickjs.a src/*.nim src/**/*.nim res/* res/**/* @mkdir -p "$(OUTDIR)/$(TARGET)/bin" @@ -49,7 +49,7 @@ $(OUTDIR_BIN)/cha: lib/libquickjs.a src/*.nim src/**/*.nim res/* res/**/* $(FLAGS) -o:"$(OUTDIR_BIN)/cha" src/main.nim ln -sf "$(OUTDIR)/$(TARGET)/bin/cha" cha -$(OUTDIR_LIBEXEC)/gopher2html: adapter/format/gopher2html.nim +$(OUTDIR_LIBEXEC)/gopher2html: adapter/format/gopher2html.nim src/utils/twtstr.nim $(NIMC) $(FLAGS) -o:"$(OUTDIR_LIBEXEC)/gopher2html" \ adapter/format/gopher2html.nim @@ -68,9 +68,12 @@ $(OUTDIR_CGI_BIN)/cha-finger: adapter/protocol/cha-finger $(OUTDIR_CGI_BIN)/about: adapter/protocol/about.nim $(NIMC) $(FLAGS) -o:"$(OUTDIR_CGI_BIN)/about" adapter/protocol/about.nim -$(OUTDIR_CGI_BIN)/data: adapter/protocol/data.nim +$(OUTDIR_CGI_BIN)/data: adapter/protocol/data.nim src/utils/twtstr.nim $(NIMC) $(FLAGS) -o:"$(OUTDIR_CGI_BIN)/data" adapter/protocol/data.nim +$(OUTDIR_CGI_BIN)/file: adapter/protocol/file.nim src/loader/dirlist.nim src/utils/twtstr.nim + $(NIMC) $(FLAGS) -o:"$(OUTDIR_CGI_BIN)/file" adapter/protocol/file.nim + CFLAGS = -g -Wall -O2 -DCONFIG_VERSION=\"$(shell cat lib/quickjs/VERSION)\" QJSOBJ = $(OBJDIR)/quickjs |