blob: 664e13b28e64a58fa6049d3f753843d77a631a5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
AM_CPPFLAGS = -I$(top_srcdir)/include
AM_CFLAGS = $(GLOBAL_CFLAGS) $(libplist_CFLAGS) $(LFS_CFLAGS)
AM_LDFLAGS = $(libplist_LIBS) ${libpthread_LIBS}
noinst_LTLIBRARIES = libinternalcommon.la
libinternalcommon_la_LIBADD =
libinternalcommon_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined
libinternalcommon_la_SOURCES = \
socket.c socket.h \
thread.c thread.h \
debug.c debug.h \
userpref.c userpref.h
if WIN32
libinternalcommon_la_LIBADD += -lole32
endif
|