Add missing files from aegisub/libosxutil/, packages/, and scripts/.

All of the missing files were related to OS X.

Originally committed to SVN as r2735.
This commit is contained in:
Amar Takhar 2009-02-16 00:27:52 +00:00
parent 5731efc46a
commit 8ba90af9cd
2 changed files with 27 additions and 2 deletions

View File

@ -57,6 +57,30 @@ EXTRA_DIST += \
m4macros/ax_check_gl.m4 \
m4macros/ac_flag.m4
# scripts/
EXTRA_DIST += \
scripts/osx-bundle-restart-helper.c \
scripts/osx-bundle.sh \
scripts/osx-dmg-dsstore.pl \
scripts/osx-dmg.sh \
scripts/osx-fix-libs.py \
scripts/unix-gen-res.awk \
scripts/unix-gen-xpm.awk
# packages/osx_bundle/
EXTRA_DIST += \
packages/osx_bundle/Contents/Info.plist \
packages/osx_bundle/Contents/Resources/*.icns \
packages/osx_bundle/Contents/Resources/etc/fonts/fonts.conf \
packages/osx_bundle/Contents/Resources/etc/fonts/fonts.dtd \
packages/osx_bundle/Contents/Resources/etc/fonts/conf.d/*.conf
# packages/osx_dmg/
EXTRA_DIST += \
packages/osx_dmg/dmg_background.png \
packages/osx_dmg/dmg_set_style.applescript
CLEANFILES= \
intltool-extract \
intltool-merge \

View File

@ -4,9 +4,10 @@ libosxutil_a_SOURCES = bundledirs.c
noinst_HEADERS = libosxutil.h
if BUILD_DARWIN
CLEANFILES = bundledirs-test
EXTRA_DIST= bundledirs-test.c
bundledirs-test: libosxutil.a
$(CC) -c bundledirs-test.c
$(CC) -o bundledirs-test -framework CoreFoundation bundledirs-test.o libosxutil.a
endif