From ef0f08a3d4d8eeb118592bc96480109d7b78e37b Mon Sep 17 00:00:00 2001 From: toni Date: Thu, 16 Nov 2017 15:07:12 +0100 Subject: initial commit --- src/Makefile.am | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/Makefile.am (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..b5b9b8e --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,17 @@ +bin_PROGRAMS = utool + +utool_CXXFLAGS = -std=c++11 -ffunction-sections -fdata-sections -Wl,--gc-sections $(UT_CFLAGS) $(WX_CFLAGS) -DCSV_IO_NO_THREAD=1 +if UT_BUILDGUI +utool_CXXFLAGS += -DUSE_GUI=1 +endif +utool_LDADD = $(UT_LIBS) $(WX_LIBS) + +utool_SOURCES = \ + Json.cpp \ + UpdateFactory.cpp \ + UpdateTool.cpp +if UT_BUILDGUI +utool_SOURCES += \ + UpdateGUI.cpp \ + JobQueue.cpp +endif -- cgit v1.2.3