Makefile.am 960 B

1234567891011121314151617
  1. bin_PROGRAMS= $(top_builddir)/bin/exampleServer $(top_builddir)/bin/exampleServerMT $(top_builddir)/bin/exampleServerACPLT
  2. #__top_builddir__bin_exampleServer_LDFLAGS = -all-static
  3. __top_builddir__bin_exampleServer_CFLAGS = -I$(top_builddir)/src -I$(top_builddir)/include
  4. __top_builddir__bin_exampleServer_SOURCES = opcuaServer.c networklayer.c
  5. __top_builddir__bin_exampleServer_LDADD= $(top_builddir)/lib/libopen62541.a
  6. __top_builddir__bin_exampleServerMT_CFLAGS = -I$(top_builddir)/src -I$(top_builddir)/include
  7. __top_builddir__bin_exampleServerMT_SOURCES = opcuaServerMT.c networklayer.c
  8. __top_builddir__bin_exampleServerMT_LDADD= $(top_builddir)/lib/libopen62541.a -lpthread
  9. __top_builddir__bin_exampleServerACPLT_CFLAGS = -I$(top_builddir)/src -I$(top_builddir)/include
  10. __top_builddir__bin_exampleServerACPLT_SOURCES = opcuaServerACPLT.c
  11. __top_builddir__bin_exampleServerACPLT_LDADD= $(top_builddir)/lib/libopen62541.a
  12. AM_CFLAGS = $(GLOBAL_AM_CFLAGS)