Makefile.am 579 B

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