mirror of
https://github.com/lxsang/ant-http
synced 2024-11-17 17:08:20 +01:00
48 lines
912 B
Makefile
48 lines
912 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
|
|
|
# check for system
|
|
if LINUX
|
|
AM_CPPFLAGS = -Wl,--no-as-needed
|
|
else
|
|
AM_CPPFLAGS = -Wl,-undefined,dynamic_lookup
|
|
endif
|
|
|
|
|
|
AM_CPPFLAGS += -W -Wall -g -std=c99
|
|
|
|
lib_LTLIBRARIES = libantd.la
|
|
libantd_la_SOURCES = lib/ini.c \
|
|
lib/handle.c \
|
|
lib/dictionary.c \
|
|
lib/base64.c \
|
|
lib/utils.c \
|
|
lib/ws.c \
|
|
lib/sha1.c \
|
|
lib/list.c \
|
|
lib/scheduler.c\
|
|
lib/plugin.c
|
|
pkginclude_HEADERS = lib/ini.h \
|
|
lib/handle.h \
|
|
lib/dictionary.h \
|
|
lib/base64.h \
|
|
lib/utils.h \
|
|
lib/ws.h \
|
|
lib/sha1.h \
|
|
lib/list.h \
|
|
lib/scheduler.h \
|
|
lib/plugin.h
|
|
|
|
EXTRA_DIST = plugin_manager.h http_server.h README.md LICENSE
|
|
# check for db
|
|
if DB
|
|
libantd_la_SOURCES += lib/dbhelper.c
|
|
pkginclude_HEADERS += lib/dbhelper.h
|
|
endif
|
|
|
|
# bin
|
|
bin_PROGRAMS = antd
|
|
# lib source files
|
|
antd_SOURCES = plugin_manager.c http_server.c httpd.c
|
|
antd_LDADD = libantd.la
|