diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-04-18 15:07:33 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-04-18 15:07:33 +0200 |
commit | 5400eaea898bcf6526d5c18fa8c274ee51081002 (patch) | |
tree | 437d91f177860bcca2f0900bb4018dfc15b35c21 /Makefile | |
parent | 39bd177bdb80c24e73f7cf3db4239e55e13eb152 (diff) |
CGI interface
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ DISTROS=debian10 VERSION=$(shell dpkg-parsechangelog --show-field Version) PROJECTNAME=webserver -PLUGINS=static-files webbox # weblog cgi fcgi +PLUGINS=static-files webbox cgi # weblog fcgi CXX=clang++-10 @@ -77,7 +77,7 @@ TESTSRC=\ SRC=$(PROGSRC) webserver.cpp build: $(PROJECTNAME) test-$(PROJECTNAME) - set -e ; for i in $(PLUGINS) ; do make -C plugins/$$i ; done + +set -e ; for i in $(PLUGINS) ; do make -C plugins/$$i ; done ./test-$(PROJECTNAME) all: build |