Makefile.am 337 B

123456789101112
  1. bin_PROGRAMS= $(top_builddir)/bin/exampleServer
  2. __top_builddir__bin_exampleServer_LDFLAGS = -all-static
  3. __top_builddir__bin_exampleServer_SOURCES = opcuaServer.c
  4. __top_builddir__bin_exampleServer_LDADD= ../../lib/libopen62541.a
  5. #optimization levels depending on debug
  6. if DEBUG
  7. AM_CFLAGS = -O0
  8. else
  9. AM_CFLAGS = -O2
  10. endif