Files now copied to build directory instead of source directory while configuring
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/win32/exports; $(MAKE))
74 # Rule to build the Project Builder archive in MacOS X
76 rm -f `find . -name .DS_Store`
77 if [ -d PBProjects ]; then \
78 tar zcvf $@ PBProjects; \
81 # Rule to force automake to rebuild the library
83 @echo "This build target is no longer necessary"
85 # Rule to install the libraries only - prevent rebuilding apps
87 cd src && $(MAKE) install-libLTLIBRARIES
89 # Run ldconfig after installing the library:
93 # Grab the test programs for the distribution:
95 if test -f test/Makefile; then (cd test; make distclean); fi
96 cp -rp $(srcdir)/test $(distdir)
97 rm -rf `find $(distdir) -type d -name CVS -print`
99 # Create a CVS snapshot that people can run update -d on
100 CVSROOT = :pserver:guest@libsdl.org:/home/sdlweb/libsdl.org/cvs
102 cvs -d $(CVSROOT) login
103 cvs -d $(CVSROOT) checkout SDL12
104 (cd SDL12 && ./autogen.sh)
106 tar zcvf $(HOME)/SDL-1.2.tar.gz SDL-1.2
109 cvs -d $(CVSROOT) login
110 cvs -d $(CVSROOT) checkout -r branch_1_3_x SDL12
111 (cd SDL12 && ./autogen.sh)
113 tar zcvf $(HOME)/SDL-1.3.tar.gz SDL-1.3