summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-04-18 15:07:33 +0200
committerRoland Reichwein <mail@reichwein.it>2020-04-18 15:07:33 +0200
commit5400eaea898bcf6526d5c18fa8c274ee51081002 (patch)
tree437d91f177860bcca2f0900bb4018dfc15b35c21 /Makefile
parent39bd177bdb80c24e73f7cf3db4239e55e13eb152 (diff)
CGI interface
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c7834d0..d45bb7f 100644
--- a/Makefile
+++ b/Makefile
@@ -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