diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -20,6 +20,7 @@ default: echo ', 0' >> tmp/osdd.xxd xxd -i < src/css.css > tmp/css.xxd echo ', 0' >> tmp/css.xxd + xxd -i < src/ico.ico > tmp/ico.xxd $(CC) $(cflags) $(CFLAGS) $(SRCFILE) $(ldflags) $(LDFLAGS) -o$(BINFILE) install: @@ -32,9 +33,6 @@ distclean: clean: rm sear.c tmp -rf -prepare: - apt install libmicrohttpd-dev xxd build-essential libxml2-dev php-cli debmake debheler -y - test-http: mkdir -p tmp gcc -Wall -pedantic -g -Isrc -Itmp test/nanohttp.c $$(xml2-config --libs --cflags) -otmp/nanohttp @@ -45,4 +43,4 @@ test-http-valgrind: valgrind: valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --log-file=valgrind-out.txt ./sear.c -.PHONY: valgrind test-http-valgrind test-http prepare clean distclean install default +.PHONY: valgrind test-http-valgrind test-http clean distclean install default |