mirror of
https://github.com/lxsang/antd-fcgi-plugin.git
synced 2024-11-12 16:38:23 +01:00
19 lines
332 B
Makefile
19 lines
332 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 -fPIC
|
|
|
|
lib_LTLIBRARIES = fcgi.la
|
|
fcgi_la_LDFLAGS = -module -avoid-version -shared
|
|
fcgi_la_SOURCES = fcgi.c proto.c
|
|
|
|
EXTRA_DIST = README.md
|