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

65 lines
1.2 KiB
Makefile

include var.mk
LIB_PATH=$(BUILDIRD)/plugins
LIB_NAME=libantd
LIB_FLAG= $(LIB_NAME).$(EXT)
SERVERLIB= -ldl $(LIB_FLAG) $(DB_LIB) $(SSL_LIB) -lpthread
SERVER_O=plugin_manager.o \
http_server.o
#-lsocket
LIBOBJS = libs/ini.o \
libs/handle.o \
$(DB_OBJ) \
libs/dictionary.o \
libs/base64.o \
libs/utils.o \
libs/ws.o \
libs/sha1.o \
libs/list.o
PLUGINSDEP = libs/plugin.o
main: initd httpd antd_plugins
initd:
-mkdir -p $(LIB_PATH)
httpd: lib $(SERVER_O)
$(CC) $(CFLAGS) $(SERVER_O) -o $(BUILDIRD)/httpd httpd.c $(SERVERLIB)
cp antd $(BUILDIRD)
lib: $(LIBOBJS)
$(CC) $(CFLAGS) $(DB_LIB) $(SSL_LIB) -shared -o $(LIB_NAME).$(EXT) $(LIBOBJS)
cp $(LIB_NAME).$(EXT) $(LIB_PATH$)/
%.o: %.c
$(CC) -fPIC $(CFLAGS) -c $< -o $@
antd_plugins:
- echo "make plugin"
-for file in plugins/* ; do\
echo $$file;\
if [ -d "$$file" ]; then \
make -C "$$file"; \
fi \
done
plugin:
read -r -p "Enter package name: " PKG;\
cd plugins/$$PKG && make clean && make\
clean: sclean pclean
sclean:
-rm -f *.o $(BUILDIRD)/httpd
-rm *.$(EXT)
pclean:
-rm -rf $(BUILDIRD)/plugins/* libs/*.o
-for file in plugins/* ;do \
if [ -d "$$file" ]; then \
make -C "$$file" clean; \
fi \
done
.PRECIOUS: %.o