Aegisub/aegisub/reporter/Makefile.am
Amar Takhar 714fa65071 Rename 2.2 to 3.0 as this will now be the next version outside of 2.1.
Originally committed to SVN as r4747.
2010-08-15 18:40:58 +00:00

52 lines
1 KiB
Makefile

AUTOMAKE_OPTIONS = foreign
AM_CXXFLAGS =
DISTCLEANFILES =
bin_PROGRAMS = reporter-3.0
if PRECOMPILED_HEADER
BUILT_SOURCES = r_pre.h.gch
AM_CXXFLAGS += -include r_pre.h -Winvalid-pch -fpch-deps -fpch-preprocess
nodist_reporter_3_0_SOURCES = r_prec.h.gch
endif
reporter_3_0_CPPFLAGS = -Iinclude @LIBCURL_CFLAGS@ @WX_CPPFLAGS@
reporter_3_0_LDFLAGS = @WX_LIBS@ @LIBCURL_LIBS@
if PRECOMPILED_HEADER
# This doesn't depend on Makefile on purpose, you should already know what you're doing when using this.
r_pre.h.gch: r_pre.h
@CXX@ @WX_CPPFLAGS@ @CXXFLAGS@ @DEBUG_FLAGS@ r_pre.h
DISTCLEANFILES += r_pre.h.gch
endif
reporter_3_0_SOURCES = \
aegisub.cpp \
main.cpp \
name_map.cpp \
platform.cpp \
platform_unix.cpp \
progress.cpp \
report.cpp \
upload.cpp \
view.cpp
if BUILD_BSD
reporter_3_0_SOURCES += platform_unix_bsd.cpp
endif
if BUILD_LINUX
reporter_3_0_SOURCES += platform_unix_linux.cpp
endif
if BUILD_DARWIN
reporter_3_0_SOURCES += platform_unix_osx.cpp
endif
reporter_3_0_SOURCES += \
*.h \
include/*.h