Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Sep 11, 2001
1 parent 31f2704 commit 39226f6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/macosx/Info.plist → src/main/macosx/Info.plist.in
Expand Up @@ -5,13 +5,15 @@
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>dummy</string>
<string>@EXECUTABLE_NAME@</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>dummy</string>
<string>@PACKAGE@</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>@VERSION@</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>NSMainNibFile</key>
Expand Down
10 changes: 10 additions & 0 deletions src/main/macosx/Makefile.am
Expand Up @@ -15,3 +15,13 @@ nibdata_DATA = \
SDLMain.nib/objects.nib \
Info.plist
endif

EXTRA_DIST = SDLMain.h SDLMain.m

# The nib and exports directories need to be copied into place
# when building a distribution.
dist-hook:
(cd $(distdir) && rm -f $(BUILT_SOURCES))
cp -rp SDLMain.nib $(distdir)
cp -rp exports $(distdir)
(cd $(distdir) && rm -rf `find . -name CVS`)

0 comments on commit 39226f6

Please sign in to comment.