Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 679 Bytes

Makefile.am

File metadata and controls

25 lines (21 loc) · 679 Bytes
 
Sep 23, 2001
Sep 23, 2001
1
# On OS X, install the SDLMain.nib.
2
3
4
5
6
# We use an ugly hack to force the creation of the
# destination dir, maybe somebody with more automake
# experience knows how to do this properly?
if TARGET_MACOSX
Oct 26, 2001
Oct 26, 2001
7
8
9
hackhacknibdatadir = $(nibdatadir)/SDLMain.nib
hackhacknibdata_DATA = info.nib
10
11
nibdatadir = $(datadir)/sdl
nibdata_DATA = \
Sep 23, 2001
Sep 23, 2001
12
13
14
SDLMain.nib/classes.nib \
SDLMain.nib/info.nib \
SDLMain.nib/objects.nib \
15
16
Info.plist
endif
Sep 11, 2001
Sep 11, 2001
17
Oct 26, 2001
Oct 26, 2001
18
EXTRA_DIST = SDLMain.h SDLMain.m info.nib
Sep 11, 2001
Sep 11, 2001
19
20
21
22
# The nib and exports directories need to be copied into place
# when building a distribution.
dist-hook:
Sep 23, 2001
Sep 23, 2001
23
cp -rp SDLMain.nib $(distdir)
Sep 11, 2001
Sep 11, 2001
24
25
cp -rp exports $(distdir)
(cd $(distdir) && rm -rf `find . -name CVS`)