Commit 8a6dd452 authored by Sam Lantinga's avatar Sam Lantinga

Fixed the project builder project archive

Added a rule to generate the archive from loose directories too. :)

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40124
parent 15e2f09e
......@@ -57,6 +57,13 @@ exports:
(cd src/main/macos/exports; $(MAKE))
(cd src/main/win32/exports; $(MAKE))
# Rule to build the Project Builder archive in MacOS X
PBProjects.tar.gz:
rm -f `find . -name .DS_Store`
if [ -d PBProjects ]; then \
tar zcvf $@ PBProjects src/main/macosx/SDLMain.nib; \
fi
# Rule to force automake to rebuild the library
changed:
@echo "This build target is no longer necessary"
......
No preview for this file type
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment