2010-12-05 20:12:42 +01:00
|
|
|
include ../Makefile.inc
|
|
|
|
|
2013-10-15 20:39:34 +02:00
|
|
|
ifeq (yes, $(BUILD_DARWIN))
|
|
|
|
osx-bundle-restart-helper: osx-bundle-restart-helper.c
|
|
|
|
$(BIN_CC) -o osx-bundle-restart-helper osx-bundle-restart-helper.c
|
|
|
|
CLEANFILES += osx-bundle-restart-helper
|
|
|
|
all: osx-bundle-restart-helper
|
2010-12-05 20:12:42 +01:00
|
|
|
endif
|
|
|
|
|
2013-12-18 17:41:42 +01:00
|
|
|
CXXFLAGS += -I../libaegisub/include $(CFLAGS_ICU)
|
2014-06-09 16:12:41 +02:00
|
|
|
LIBS := -L../libaegisub -laegisub $(LIBS) $(LIBS_BOOST) $(LIBS_ICU)
|
2013-12-18 17:41:42 +01:00
|
|
|
|
|
|
|
repack-thes-dict: repack-thes-dict.cpp
|
|
|
|
$(BIN_CXX) -o repack-thes-dict repack-thes-dict.cpp $(CXXFLAGS) $(LIBS)
|
|
|
|
|
2010-12-05 20:12:42 +01:00
|
|
|
include ../Makefile.target
|