Mercurial > sdl-ios-xcode
comparison Makefile.in @ 1424:7a610f25c12f
Updated MacOS Classic MPW build
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 24 Feb 2006 09:57:14 +0000 |
parents | 36a5068bf7df |
children | e3242177fe4a |
comparison
equal
deleted
inserted
replaced
1423:4ed717f9e509 | 1424:7a610f25c12f |
---|---|
143 tar cvf - $(distdir) | gzip --best >$(distfile) | 143 tar cvf - $(distdir) | gzip --best >$(distfile) |
144 rm -rf $(distdir) | 144 rm -rf $(distdir) |
145 | 145 |
146 rpm: $(distfile) | 146 rpm: $(distfile) |
147 rpmbuild -ta $? | 147 rpmbuild -ta $? |
148 | |
149 # Create a CVS snapshot that people can run update -d on | |
150 CVSROOT = :pserver:guest@libsdl.org:/home/sdlweb/libsdl.org/cvs | |
151 snapshot: | |
152 cvs -d $(CVSROOT) login | |
153 cvs -d $(CVSROOT) checkout -P SDL12 | |
154 (cd SDL12 && ./autogen.sh && rm -rf autom4te.cache) | |
155 mv SDL12 SDL-1.2 | |
156 tar zcvf $(HOME)/SDL-1.2.tar.gz SDL-1.2 | |
157 rm -rf SDL-1.2 |