Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 633 Bytes

Makefile.am

File metadata and controls

23 lines (20 loc) · 633 Bytes
 
Sep 23, 2001
Sep 23, 2001
1
# On OS X, install the SDLMain.nib.
2
3
4
5
6
7
8
# 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
nibdatadir = $(datadir)/sdl
nibdata_DATA = \
Sep 23, 2001
Sep 23, 2001
9
10
11
SDLMain.nib/classes.nib \
SDLMain.nib/info.nib \
SDLMain.nib/objects.nib \
12
13
Info.plist
endif
Sep 11, 2001
Sep 11, 2001
14
Sep 23, 2001
Sep 23, 2001
15
EXTRA_DIST = SDLMain.h SDLMain.m
Sep 11, 2001
Sep 11, 2001
16
17
18
19
20
# The nib and exports directories need to be copied into place
# when building a distribution.
dist-hook:
(cd $(distdir) && rm -f $(BUILT_SOURCES))
Sep 23, 2001
Sep 23, 2001
21
cp -rp SDLMain.nib $(distdir)
Sep 11, 2001
Sep 11, 2001
22
23
cp -rp exports $(distdir)
(cd $(distdir) && rm -rf `find . -name CVS`)