forked from mia/Aegisub
714fa65071
Originally committed to SVN as r4747.
51 lines
1 KiB
Makefile
51 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
|
|
|