Added a delay so the warning message isn't accidentally missed.
1 # Makefile to build and install the SDL library
8 exec_prefix = @exec_prefix@
9 bindir = $(DESTDIR)@bindir@
10 libdir = $(DESTDIR)@libdir@
11 includedir = $(DESTDIR)@includedir@
12 datadir = $(DESTDIR)@datadir@
13 mandir = $(DESTDIR)@mandir@
15 distpath = $(srcdir)/..
16 distdir = SDL-@SDL_VERSION@
17 distfile = $(distdir).tar.gz
23 CFLAGS = @BUILD_CFLAGS@
24 EXTRA_CFLAGS = @EXTRA_CFLAGS@
25 LDFLAGS = @BUILD_LDFLAGS@
26 EXTRA_LDFLAGS = @EXTRA_LDFLAGS@
29 NASM = @NASM@ @NASMFLAGS@
37 SDLMAIN_TARGET = libSDLmain.a
38 SDLMAIN_SOURCES = @SDLMAIN_SOURCES@
39 SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@
41 DIST = acinclude.m4 autogen.sh Borland.html Borland.zip BUGS build-scripts configure configure.in COPYING CREDITS CWprojects.sea.bin docs docs.html EpocBuildFiles.zip include INSTALL Makefile.dc Makefile.minimal Makefile.in MPWmake.sea.bin README* sdl-config.in sdl.m4 SDL.qpg.in SDL.spec SDL.spec.in src test TODO VisualCE.zip VisualC.html VisualC.zip Watcom-OS2.zip WhatsNew Xcode.tar.gz
44 LT_CURRENT = @LT_CURRENT@
45 LT_RELEASE = @LT_RELEASE@
46 LT_REVISION = @LT_REVISION@
47 LT_LDFLAGS = -no-undefined -rpath $(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
49 all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
51 $(srcdir)/configure: $(srcdir)/configure.in
52 @echo "Warning, configure.in is out of date"
53 #(cd $(srcdir) && sh autogen.sh && sh configure)
56 Makefile: $(srcdir)/Makefile.in
57 $(SHELL) config.status $@
60 $(SHELL) $(auxdir)/mkinstalldirs $@
62 .PHONY: all depend install install-bin install-hdrs install-lib install-data install-man uninstall uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man clean distclean dist
64 @SOURCES="$(SOURCES)" INCLUDE="$(INCLUDE)" objects="$(objects)" output="$(depend)" \
65 $(SHELL) $(auxdir)/makedep.sh
66 @for src in $(SDLMAIN_SOURCES); do \
67 obj=`echo $$src | sed -e 's|.*/||' -e 's|\.[^\.]*$$|.o|'`; \
68 echo "$(objects)/$$obj: $$src" >>$(depend); \
69 echo " \$$(CC) \$$(CFLAGS) \$$(EXTRA_CFLAGS) -c $$src -o \$$@" >>$(depend); \
74 $(objects)/$(TARGET): $(OBJECTS)
75 $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS)
77 $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS)
78 $(AR) cru $@ $(SDLMAIN_OBJECTS)
81 install: install-bin install-hdrs install-lib install-data install-man
83 $(SHELL) $(auxdir)/mkinstalldirs $(bindir)
84 $(INSTALL) -m 755 sdl-config $(bindir)/sdl-config
86 $(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL
87 for src in $(srcdir)/include/*.h; do \
88 file=`echo $$src | sed -e 's|^.*/||'`; \
89 $(INSTALL) -m 644 $$src $(includedir)/SDL/$$file; \
91 $(INSTALL) -m 644 include/SDL_config.h $(includedir)/SDL/SDL_config.h
93 $(SHELL) $(auxdir)/mkinstalldirs $(libdir)
94 $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(libdir)/$(TARGET)
95 $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(libdir)/$(SDLMAIN_TARGET)
96 $(RANLIB) $(libdir)/$(SDLMAIN_TARGET)
98 $(SHELL) $(auxdir)/mkinstalldirs $(datadir)/aclocal
99 $(INSTALL) -m 644 $(srcdir)/sdl.m4 $(datadir)/aclocal/sdl.m4
101 $(SHELL) $(auxdir)/mkinstalldirs $(mandir)/man3
102 for src in $(srcdir)/docs/man3/*.3; do \
103 file=`echo $$src | sed -e 's|^.*/||'`; \
104 $(INSTALL) -m 644 $$src $(mandir)/man3/$$file; \
107 uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man
109 rm -f $(bindir)/sdl-config
111 for src in $(srcdir)/include/*.h; do \
112 file=`echo $$src | sed -e 's|^.*/||'`; \
113 rm -f $(includedir)/SDL/$$file; \
115 rm -f $(includedir)/SDL/SDL_config.h
116 -rmdir $(includedir)/SDL
118 $(LIBTOOL) --mode=uninstall rm -f $(libdir)/$(TARGET)
119 rm -f $(libdir)/$(SDLMAIN_TARGET)
121 rm -f $(datadir)/aclocal/sdl.m4
123 for src in $(srcdir)/docs/man3/*.3; do \
124 file=`echo $$src | sed -e 's|^.*/||'`; \
125 rm -f $(mandir)/man3/$$file; \
130 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi
133 rm -f Makefile include/SDL_config.h sdl-config
134 rm -f include/SDL_config.h sdl-config
136 rm -f config.status config.cache config.log libtool $(depend)
137 rm -rf $(srcdir)/autom4te*
146 cp $(srcdir)/include/SDL_config.h.default $(srcdir)/include/SDL_config.h
147 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi
150 $(SHELL) $(auxdir)/mkinstalldirs $(distdir)
151 tar cf - $(DIST) | (cd $(distdir); tar xf -)
152 cp $(distdir)/include/SDL_config.h.default $(distdir)/include/SDL_config.h
153 rm -rf `find $(distdir) -name CVS`
154 rm -f `find $(distdir) -name '.cvsignore'`
155 rm -f `find $(distdir) -name '.#*'`
156 rmdir `find $(distdir) -type d -empty`
157 tar cvf - $(distdir) | gzip --best >$(distfile)
163 # Create a CVS snapshot that people can run update -d on
164 CVSROOT = :pserver:guest@libsdl.org:/home/sdlweb/libsdl.org/cvs
166 cvs -d $(CVSROOT) login
167 cvs -d $(CVSROOT) checkout -P SDL12
168 (cd SDL12 && ./autogen.sh && rm -rf autom4te.cache)
169 cp SDL12/include/SDL_config.h.default SDL12/include/SDL_config.h
171 tar zcf $(HOME)/SDL-1.2.tar.gz SDL-1.2
172 rm -f $(HOME)/SDL-1.2.zip
173 zip -r $(HOME)/SDL-1.2.zip SDL-1.2