Makefile.am 438 B

12345678910111213
  1. bin_PROGRAMS= $(top_builddir)/bin/exampleServer
  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
  5. __top_builddir__bin_exampleServer_LDADD= $(top_builddir)/lib/libopen62541.a
  6. #optimization levels depending on debug
  7. if DEBUG
  8. AM_CFLAGS = -O0
  9. else
  10. AM_CFLAGS = -O2
  11. endif