equal
deleted
inserted
replaced
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 |