Makefile.am 549 B

1234567891011121314151617
  1. noinst_LIBRARIES = libenet.a
  2. EXTRA_DIST = ChangeLog configure design.txt Doxyfile LICENSE tutorial.txt CMakeLists.txt\
  3. $(shell find $(srcdir) -maxdepth 2 -name "*.dox")
  4. libenet_a_SOURCES = callbacks.c compress.c host.c list.c packet.c peer.c \
  5. protocol.c unix.c win32.c \
  6. include/enet/callbacks.h \
  7. include/enet/enet.h \
  8. include/enet/list.h \
  9. include/enet/protocol.h \
  10. include/enet/time.h \
  11. include/enet/types.h \
  12. include/enet/unix.h \
  13. include/enet/utility.h \
  14. include/enet/win32.h
  15. AM_CPPFLAGS = -I$(srcdir)/include/