Makefile.am 257 B

1234567891011121314
  1. AM_CFLAGS = $(GLOBAL_CFLAGS)
  2. noinst_LTLIBRARIES = libinternalcommon.la
  3. libinternalcommon_la_LIBADD =
  4. libinternalcommon_la_SOURCES = \
  5. socket.c \
  6. collection.c \
  7. socket.h \
  8. collection.h
  9. if WIN32
  10. libinternalcommon_la_LIBADD += -lws2_32
  11. endif