Add a cheap 'make bundledirs-test' target.

Originally committed to SVN as r2645.
This commit is contained in:
Amar Takhar 2009-01-04 13:07:57 +00:00
parent 79b79d737f
commit 37b395310b
1 changed files with 8 additions and 0 deletions

View File

@ -5,3 +5,11 @@ libosxutil_a_SOURCES = bundledirs.c
noinst_HEADERS = libosxutil.h
EXTRA_DIST= callables.c
if BUILD_DARWIN
CLEANFILES = bundledirs-test
bundledirs-test: libosxutil.a
$(CC) -c bundledirs-test.c
$(CC) -o bundledirs-test -framework CoreFoundation bundledirs-test.o libosxutil.a
endif