diff options
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 |