2009-09-03 08:53:55 +02:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
AM_CXXFLAGS =
|
2010-01-30 17:59:24 +01:00
|
|
|
DISTCLEANFILES =
|
2009-09-03 08:53:55 +02:00
|
|
|
|
2009-09-27 01:09:39 +02:00
|
|
|
bin_PROGRAMS = reporter-2.2
|
2009-09-03 08:53:55 +02:00
|
|
|
|
|
|
|
if PRECOMPILED_HEADER
|
2009-09-21 06:53:51 +02:00
|
|
|
BUILT_SOURCES = r_pre.h.gch
|
|
|
|
AM_CXXFLAGS += -include r_pre.h -Winvalid-pch -fpch-deps -fpch-preprocess
|
2009-09-27 01:09:39 +02:00
|
|
|
nodist_reporter_2_2_SOURCES = r_prec.h.gch
|
2009-09-03 08:53:55 +02:00
|
|
|
endif
|
|
|
|
|
2009-09-27 01:09:39 +02:00
|
|
|
reporter_2_2_CPPFLAGS = -Iinclude @LIBCURL_CFLAGS@ @WX_CPPFLAGS@
|
|
|
|
reporter_2_2_LDFLAGS = @WX_LIBS@ @LIBCURL_LIBS@
|
2009-09-03 08:53:55 +02:00
|
|
|
|
|
|
|
if PRECOMPILED_HEADER
|
|
|
|
# This doesn't depend on Makefile on purpose, you should already know what you're doing when using this.
|
2009-09-21 06:53:51 +02:00
|
|
|
r_pre.h.gch: r_pre.h
|
|
|
|
@CXX@ @WX_CPPFLAGS@ @CXXFLAGS@ @DEBUG_FLAGS@ r_pre.h
|
2010-01-30 17:59:24 +01:00
|
|
|
DISTCLEANFILES += r_pre.h.gch
|
2009-09-03 08:53:55 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2009-09-27 01:09:39 +02:00
|
|
|
reporter_2_2_SOURCES = \
|
2009-09-03 08:53:55 +02:00
|
|
|
aegisub.cpp \
|
|
|
|
main.cpp \
|
|
|
|
name_map.cpp \
|
|
|
|
platform.cpp \
|
|
|
|
platform_unix.cpp \
|
|
|
|
progress.cpp \
|
|
|
|
report.cpp \
|
|
|
|
upload.cpp \
|
|
|
|
view.cpp
|
|
|
|
|
2009-09-26 16:50:24 +02:00
|
|
|
if BUILD_BSD
|
2009-09-27 01:09:39 +02:00
|
|
|
reporter_2_2_SOURCES += platform_unix_bsd.cpp
|
2009-09-26 16:50:24 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
if BUILD_LINUX
|
2009-09-27 01:09:39 +02:00
|
|
|
reporter_2_2_SOURCES += platform_unix_linux.cpp
|
2009-09-26 16:50:24 +02:00
|
|
|
endif
|
|
|
|
|
2009-09-27 03:47:11 +02:00
|
|
|
if BUILD_DARWIN
|
|
|
|
reporter_2_2_SOURCES += platform_unix_osx.cpp
|
|
|
|
endif
|
|
|
|
|
2009-09-03 08:53:55 +02:00
|
|
|
|
2009-09-27 01:09:39 +02:00
|
|
|
reporter_2_2_SOURCES += \
|
2009-09-03 08:53:55 +02:00
|
|
|
*.h \
|
|
|
|
include/*.h
|
|
|
|
|