summaryrefslogtreecommitdiffhomepage
path: root/tests/Makefile
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-06-06 15:21:43 +0200
committerRoland Reichwein <mail@reichwein.it>2020-06-06 15:21:43 +0200
commit3d909981106454a9fe5ed4b27fd94f0135ef0871 (patch)
tree1c4a488cfb26248793d21c96d73d2adc2cbf4af3 /tests/Makefile
parent357cf76409d30341a2c4eedcf2568f0abd56e88d (diff)
test stoul()
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 2f0e809..8529d6d 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -26,12 +26,8 @@ TESTSRC=\
$(PROGSRC)
build: $(PROJECTNAME)
- +set -e ; for i in $(PLUGINS) ; do make -C plugins/$$i ; done
./$(PROJECTNAME)
-all: build
- ./webserver -c webserver.conf
-
$(PROJECTNAME): ../libcommon/libcommon.a $(TESTSRC:.cpp=.o)
$(CXX) $(LDFLAGS) $^ $(LDLIBS) $(LIBS) -o $@
@@ -43,18 +39,6 @@ dep: $(TESTSRC:.cpp=.d)
%.o: %.cpp %.d
$(CXX) $(CXXFLAGS) $(CXXTESTFLAGS) -c $< -o $@
-install:
- mkdir -p $(DESTDIR)/usr/bin
- cp webserver $(DESTDIR)/usr/bin
-
- mkdir -p $(DESTDIR)/usr/lib/webserver/plugins
- set -e ; for i in $(PLUGINS) ; do make -C plugins/$$i install ; done
-
- mkdir -p $(DESTDIR)/usr/local/lib/webserver/plugins
-
- #mkdir -p $(DESTDIR)/etc
- #cp webserver.conf $(DESTDIR)/etc/webserver.conf
-
# misc ---------------------------------------------------
clean: