1 # The top-level input Makefile for SDL
6 ## Any directories that you want built and installed should go here.
7 SUBDIRS = src include docs
9 ## Any directories you want a part of the distribution should be listed
10 ## here, as well as have a Makefile generated at the end of configure.in
12 ## This only works for subdirectories one level deep.
13 DIST_SUBDIRS = $(SUBDIRS)
15 # SDL runtime configuration script
16 bin_SCRIPTS = sdl-config
18 # All the rest of the distributed files
57 # M4 macro file for inclusion with autoconf
58 m4datadir = $(datadir)/aclocal
61 # Rule to build tar-gzipped distribution package
62 $(PACKAGE)-$(VERSION).tar.gz: dist
64 # Rule to build RPM distribution package
65 rpm: $(PACKAGE)-$(VERSION).tar.gz
66 rpm -ta $(PACKAGE)-$(VERSION).tar.gz
68 # Rule to rebuild the export lists for BeOS, MacOS and Win32.
70 (cd src/main/beos/exports; $(MAKE))
71 (cd src/main/macos/exports; $(MAKE))
72 (cd src/main/macosx/exports; $(MAKE))
73 (cd src/main/win32/exports; $(MAKE))
75 # Rule to build the Project Builder archive in MacOS X
77 rm -f `find . -name .DS_Store`
78 if [ -d PBProjects ]; then \
79 tar zcvf $@ PBProjects; \
82 # Rule to install the libraries only - prevent rebuilding apps
84 cd src && $(MAKE) install-libLTLIBRARIES
86 # Run ldconfig after installing the library:
90 # Grab the test programs for the distribution:
92 if test -f test/Makefile; then (cd test; make distclean); fi
93 rm -rf $(srcdir)/test/autom4te*
94 cp -rp $(srcdir)/test $(distdir)
95 rm -rf `find $(distdir) -type d -name CVS -print`
97 # Create a CVS snapshot that people can run update -d on
98 CVSROOT = :pserver:guest@libsdl.org:/home/sdlweb/libsdl.org/cvs
100 cvs -d $(CVSROOT) login
101 cvs -d $(CVSROOT) checkout SDL12
102 (cd SDL12 && ./autogen.sh)
104 tar zcvf $(HOME)/SDL-1.2.tar.gz SDL-1.2
107 cvs -d $(CVSROOT) login
108 cvs -d $(CVSROOT) checkout -r branch_1_3_x SDL12
109 (cd SDL12 && ./autogen.sh)
111 tar zcvf $(HOME)/SDL-1.3.tar.gz SDL-1.3