1 # Makefile to build and install the SDL library
8 exec_prefix = @exec_prefix@
11 includedir = @includedir@
12 datarootdir = @datarootdir@
16 distpath = $(srcdir)/..
17 distdir = SDL-@SDL_VERSION@
18 distfile = $(distdir).tar.gz
24 CFLAGS = @BUILD_CFLAGS@
25 EXTRA_CFLAGS = @EXTRA_CFLAGS@
26 LDFLAGS = @BUILD_LDFLAGS@
27 EXTRA_LDFLAGS = @EXTRA_LDFLAGS@
30 NASM = @NASM@ @NASMFLAGS@
39 SDLMAIN_TARGET = libSDLmain.a
40 SDLMAIN_SOURCES = @SDLMAIN_SOURCES@
41 SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@
46 #include $(srcdir)/src/video/ps3/spulibs/Makefile
48 DIST = acinclude.m4 autogen.sh Borland.html Borland.zip BUGS build-scripts configure configure.in COPYING CREDITS docs docs.html include INSTALL Makefile.dc Makefile.minimal Makefile.in README* sdl-config.in sdl.m4 sdl.pc.in SDL.qpg.in SDL.spec SDL.spec.in src test TODO VisualC.html VisualC VisualCE Watcom-OS2.zip Watcom-Win32.zip WhatsNew Xcode
50 HDRS = SDL.h SDL_atomic.h SDL_audio.h SDL_cdrom.h SDL_compat.h SDL_cpuinfo.h SDL_endian.h SDL_error.h SDL_events.h SDL_haptic.h SDL_joystick.h SDL_keyboard.h SDL_keysym.h SDL_loadso.h SDL_main.h SDL_mouse.h SDL_mutex.h SDL_name.h SDL_opengl.h SDL_opengles.h SDL_pixels.h SDL_platform.h SDL_power.h SDL_quit.h SDL_rect.h SDL_revision.h SDL_rwops.h SDL_scancode.h SDL_stdinc.h SDL_surface.h SDL_syswm.h SDL_thread.h SDL_timer.h SDL_types.h SDL_version.h SDL_video.h begin_code.h close_code.h
53 LT_CURRENT = @LT_CURRENT@
54 LT_RELEASE = @LT_RELEASE@
55 LT_REVISION = @LT_REVISION@
56 LT_LDFLAGS = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
58 all: $(srcdir)/configure Makefile $(objects) update-revision $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
60 $(srcdir)/configure: $(srcdir)/configure.in
61 @echo "Warning, configure.in is out of date"
62 #(cd $(srcdir) && sh autogen.sh && sh configure)
65 Makefile: $(srcdir)/Makefile.in
66 $(SHELL) config.status $@
69 $(SHELL) $(auxdir)/mkinstalldirs $@
72 $(SHELL) $(auxdir)/updaterev.sh
74 .PHONY: all update-revision 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
76 @SOURCES="$(SOURCES)" INCLUDE="$(INCLUDE)" output="$(depend)" \
77 $(SHELL) $(auxdir)/makedep.sh
78 @for src in $(SDLMAIN_SOURCES); do \
79 obj=`echo $$src | sed -e 's|.*/||' -e 's|\.[^\.]*$$|.o|'`; \
80 echo "\$$(objects)/$$obj: $$src" >>$(depend); \
81 echo " \$$(CC) \$$(CFLAGS) \$$(EXTRA_CFLAGS) -c $$src -o \$$@" >>$(depend); \
86 $(objects)/$(TARGET): $(OBJECTS)
87 $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS)
89 $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS)
90 $(AR) cru $@ $(SDLMAIN_OBJECTS)
93 install: all install-bin install-hdrs install-lib install-data install-man
95 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(bindir)
96 $(INSTALL) -m 755 sdl-config $(DESTDIR)$(bindir)/sdl-config
98 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(includedir)/SDL
99 for file in $(HDRS); do \
100 $(INSTALL) -m 644 $(srcdir)/include/$$file $(DESTDIR)$(includedir)/SDL/$$file; \
102 $(INSTALL) -m 644 include/SDL_config.h $(DESTDIR)$(includedir)/SDL/SDL_config.h
103 install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
104 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)
105 $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
106 $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
107 $(RANLIB) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
109 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(datadir)/aclocal
110 $(INSTALL) -m 644 $(srcdir)/sdl.m4 $(DESTDIR)$(datadir)/aclocal/sdl.m4
111 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig
112 $(INSTALL) -m 644 sdl.pc $(DESTDIR)$(libdir)/pkgconfig
114 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(mandir)/man3
115 for src in $(srcdir)/docs/man3/*.3; do \
116 file=`echo $$src | sed -e 's|^.*/||'`; \
117 $(INSTALL) -m 644 $$src $(DESTDIR)$(mandir)/man3/$$file; \
120 uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man
122 rm -f $(DESTDIR)$(bindir)/sdl-config
124 for file in $(HDRS); do \
125 rm -f $(DESTDIR)$(includedir)/SDL/$$file; \
127 rm -f $(DESTDIR)$(includedir)/SDL/SDL_config.h
128 -rmdir $(DESTDIR)$(includedir)/SDL
130 $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(TARGET)
131 rm -f $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
133 rm -f $(DESTDIR)$(datadir)/aclocal/sdl.m4
135 for src in $(srcdir)/docs/man3/*.3; do \
136 file=`echo $$src | sed -e 's|^.*/||'`; \
137 rm -f $(DESTDIR)$(mandir)/man3/$$file; \
142 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi
145 rm -f Makefile include/SDL_config.h sdl-config
147 rm -f config.status config.cache config.log libtool $(depend)
148 rm -rf $(srcdir)/autom4te*
157 cp $(srcdir)/include/SDL_config.h.default $(srcdir)/include/SDL_config.h
158 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi
161 $(SHELL) $(auxdir)/mkinstalldirs $(distdir)
162 tar cf - $(DIST) | (cd $(distdir); tar xf -)
163 cp $(distdir)/include/SDL_config.h.default $(distdir)/include/SDL_config.h
164 $(SHELL) $(distdir)/build-scripts/updaterev.sh
165 rm -rf `find $(distdir) -name .svn`
174 if test -f $(distdir)/test/Makefile; then (cd $(distdir)/test && make distclean); fi
175 tar cvf - $(distdir) | gzip --best >$(distfile)
181 # Run indent on the source to standardize coding style
183 @echo "Running indent... modified files:"
189 -print | fgrep -v ./Xcode | \
190 while read file; do \
191 indent "$$file" -o "$$file.indent"; \
192 if cmp "$$file" "$$file.indent" >/dev/null; then \
193 rm -f "$$file.indent"; \
196 mv -f "$$file.indent" "$$file"; \
200 # Run indent and then commit modified files
204 # Create a SVN snapshot that people can run update on
206 $(SHELL) $(auxdir)/snapshot.sh