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
53 # M4 macro file for inclusion with autoconf
54 m4datadir = $(datadir)/aclocal
57 # Rule to build tar-gzipped distribution package
58 $(PACKAGE)-$(VERSION).tar.gz: dist
60 # Rule to build RPM distribution package
61 rpm: $(PACKAGE)-$(VERSION).tar.gz
62 rpm -ta $(PACKAGE)-$(VERSION).tar.gz
64 # Rule to rebuild the export lists for BeOS, MacOS and Win32.
66 (cd src/main/beos/exports; $(MAKE))
67 (cd src/main/macos/exports; $(MAKE))
68 (cd src/main/win32/exports; $(MAKE))
70 # Rule to build the Project Builder archive in MacOS X
72 rm -f `find . -name .DS_Store`
73 if [ -d PBProjects ]; then \
74 tar zcvf $@ PBProjects; \
77 # Rule to force automake to rebuild the library
79 @echo "This build target is no longer necessary"
81 # Rule to install the libraries only - prevent rebuilding apps
83 cd src && $(MAKE) install-libLTLIBRARIES
85 # Run ldconfig after installing the library:
89 # Grab the test programs for the distribution:
91 if test -f test/Makefile; then (cd test; make distclean); fi
92 cp -rp $(srcdir)/test $(distdir)
93 rm -rf `find $(distdir) -type d -name CVS -print`
95 # Create a CVS snapshot that people can run update -d on
96 CVSROOT = :pserver:guest@libsdl.org:/home/slouken/libsdl.org/cvs
98 cvs -d $(CVSROOT) login
99 cvs -d $(CVSROOT) checkout SDL12
100 (cd SDL12 && ./autogen.sh)
102 tar zcvf $(HOME)/SDL-1.2.tar.gz SDL-1.2