aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 9e70711eba43c131532c02bbc93dd1b18c1f3f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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

if HAVE_WINDRES
utool_SOURCES += utool-res.rc

.rc.o:
	$(WINDRES) $^ -o $@
.o : .rc
	$(WINDRES) $^ -o $@
endif