2010-12-05 19:12:42 +00:00
|
|
|
include ../Makefile.inc
|
|
|
|
|
|
|
|
PROGRAM = common-respack
|
|
|
|
|
|
|
|
SRC += common-respack.cpp
|
|
|
|
|
2013-10-15 11:39:34 -07: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 19:12:42 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
osx-bundle-restart-helper.c \
|
|
|
|
osx-bundle.sh \
|
2012-01-14 18:46:43 +00:00
|
|
|
osx-bundle.sed.in \
|
2010-12-05 19:12:42 +00:00
|
|
|
osx-dmg.sh \
|
|
|
|
osx-fix-libs.py
|
|
|
|
|
2012-05-14 13:21:38 +00:00
|
|
|
DISTCLEANFILES= \
|
2010-12-05 19:12:42 +00:00
|
|
|
osx-bundle.sed
|
|
|
|
|
|
|
|
include ../Makefile.target
|