From 37b395310bfcc09955845f08f28ad9159054471d Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Sun, 4 Jan 2009 13:07:57 +0000 Subject: [PATCH] Add a cheap 'make bundledirs-test' target. Originally committed to SVN as r2645. --- aegisub/libosxutil/Makefile.am | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/aegisub/libosxutil/Makefile.am b/aegisub/libosxutil/Makefile.am index a17e8a633..2543803b3 100644 --- a/aegisub/libosxutil/Makefile.am +++ b/aegisub/libosxutil/Makefile.am @@ -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