1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-01 12:59:47 +02:00

Change build dir

This commit is contained in:
lxsang 2015-12-02 11:42:40 +01:00
parent 3333e41cae
commit 43b52a3d46

View File

@ -1,9 +1,16 @@
CC=gcc
CFLAGS=-W -Wall -g -std=c99 -D DEBUG
BUILDIRD=build
EXT=dylib
SERVER=plugin_manager.o ini.o http_server.o plugins/dictionary.o plugins/utils.o
SERVERLIB=-lpthread -ldl
ifeq ($(UNAME_S),Linux)
BUILDIRD=/root/antd
endif
ifeq ($(UNAME_S),Darwin)
BUILDIRD=../build
endif
#-lsocket
PLUGINS= dummy.$(EXT) fileman.$(EXT) pluginsman.$(EXT) wterm.$(EXT)
@ -33,7 +40,7 @@ clean: sclean pclean
sclean:
rm -f *.o build/httpd
pclean:
rm -f build/plugins/* plugins/*.o
rm -f $(BUILDIRD)/plugins/* plugins/*.o
-for file in plugins/* ;do \
if [ -d "$$file" ]; then \
rm "$$file"/*.o; \