Initial standalone code, some stuff runs
[sdl_omap.git] / Makefile.in
CommitLineData
e14743d1 1# Makefile to build and install the SDL library
2
3top_builddir = .
4srcdir = @srcdir@
5objects = build
6depend = build-deps
7prefix = @prefix@
8exec_prefix = @exec_prefix@
9bindir = @bindir@
10libdir = @libdir@
11includedir = @includedir@
12datarootdir = @datarootdir@
13datadir = @datadir@
14mandir = @mandir@
15auxdir = @ac_aux_dir@
16distpath = $(srcdir)/..
17distdir = SDL-@SDL_VERSION@
18distfile = $(distdir).tar.gz
19
20@SET_MAKE@
21SHELL = @SHELL@
22CC = @CC@
23INCLUDE = @INCLUDE@
24CFLAGS = @BUILD_CFLAGS@
25EXTRA_CFLAGS = @EXTRA_CFLAGS@
26LDFLAGS = @BUILD_LDFLAGS@
27EXTRA_LDFLAGS = @EXTRA_LDFLAGS@
28LIBTOOL = @LIBTOOL@
29INSTALL = @INSTALL@
30NASM = @NASM@ @NASMFLAGS@
31AR = @AR@
32RANLIB = @RANLIB@
33WINDRES = @WINDRES@
34
35TARGET = libSDL.la
36SOURCES = @SOURCES@
37OBJECTS = @OBJECTS@
38
39SDLMAIN_TARGET = libSDLmain.a
40SDLMAIN_SOURCES = @SDLMAIN_SOURCES@
41SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@
42
43DIST = acinclude autogen.sh Borland.html Borland.zip BUGS build-scripts configure configure.in COPYING CREDITS CWprojects.sea.bin docs docs.html include INSTALL Makefile.dc Makefile.minimal Makefile.in MPWmake.sea.bin README* sdl-config.in sdl.m4 sdl.pc.in SDL.qpg.in SDL.spec SDL.spec.in src test TODO VisualCE.zip VisualC.html VisualC.zip Watcom-OS2.zip Watcom-Win32.zip symbian.zip WhatsNew Xcode.tar.gz
44
45HDRS = SDL.h SDL_active.h SDL_audio.h SDL_byteorder.h SDL_cdrom.h SDL_cpuinfo.h SDL_endian.h SDL_error.h SDL_events.h SDL_getenv.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_platform.h SDL_quit.h SDL_rwops.h SDL_stdinc.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
46
47LT_AGE = @LT_AGE@
48LT_CURRENT = @LT_CURRENT@
49LT_RELEASE = @LT_RELEASE@
50LT_REVISION = @LT_REVISION@
51LT_LDFLAGS = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
52
53all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
54
55$(srcdir)/configure: $(srcdir)/configure.in
56 @echo "Warning, configure.in is out of date"
57 #(cd $(srcdir) && sh autogen.sh && sh configure)
58 @sleep 3
59
60Makefile: $(srcdir)/Makefile.in
61 $(SHELL) config.status $@
62
63$(objects):
64 $(SHELL) $(auxdir)/mkinstalldirs $@
65
66.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
67depend:
68 @SOURCES="$(SOURCES)" INCLUDE="$(INCLUDE)" output="$(depend)" \
69 $(SHELL) $(auxdir)/makedep.sh
70 @for src in $(SDLMAIN_SOURCES); do \
71 obj=`echo $$src | sed -e 's|.*/||' -e 's|\.[^\.]*$$|.o|'`; \
72 echo "\$$(objects)/$$obj: $$src" >>$(depend); \
73 echo " \$$(CC) \$$(CFLAGS) \$$(EXTRA_CFLAGS) -c $$src -o \$$@" >>$(depend); \
74 done
75
76include $(depend)
77
78$(objects)/$(TARGET): $(OBJECTS)
79 $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS)
80
81$(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS)
82 $(AR) cru $@ $(SDLMAIN_OBJECTS)
83 $(RANLIB) $@
84
85install: all install-bin install-hdrs install-lib install-data install-man
86install-bin:
87 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(bindir)
88 $(INSTALL) -m 755 sdl-config $(DESTDIR)$(bindir)/sdl-config
89install-hdrs:
90 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(includedir)/SDL
91 for file in $(HDRS); do \
92 $(INSTALL) -m 644 $(srcdir)/include/$$file $(DESTDIR)$(includedir)/SDL/$$file; \
93 done
94 $(INSTALL) -m 644 include/SDL_config.h $(DESTDIR)$(includedir)/SDL/SDL_config.h
95install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
96 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)
97 $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
98 $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
99 $(RANLIB) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
100install-data:
101 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(datadir)/aclocal
102 $(INSTALL) -m 644 $(srcdir)/sdl.m4 $(DESTDIR)$(datadir)/aclocal/sdl.m4
103 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig
104 $(INSTALL) -m 644 sdl.pc $(DESTDIR)$(libdir)/pkgconfig
105install-man:
106 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(mandir)/man3
107 for src in $(srcdir)/docs/man3/*.3; do \
108 file=`echo $$src | sed -e 's|^.*/||'`; \
109 $(INSTALL) -m 644 $$src $(DESTDIR)$(mandir)/man3/$$file; \
110 done
111
112uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man
113uninstall-bin:
114 rm -f $(DESTDIR)$(bindir)/sdl-config
115uninstall-hdrs:
116 for file in $(HDRS); do \
117 rm -f $(DESTDIR)$(includedir)/SDL/$$file; \
118 done
119 rm -f $(DESTDIR)$(includedir)/SDL/SDL_config.h
120 -rmdir $(DESTDIR)$(includedir)/SDL
121uninstall-lib:
122 $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(TARGET)
123 rm -f $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
124uninstall-data:
125 rm -f $(DESTDIR)$(datadir)/aclocal/sdl.m4
126 rm -f $(DESTDIR)$(libdir)/pkgconfig/sdl.pc
127uninstall-man:
128 for src in $(srcdir)/docs/man3/*.3; do \
129 file=`echo $$src | sed -e 's|^.*/||'`; \
130 rm -f $(DESTDIR)$(mandir)/man3/$$file; \
131 done
132
133clean:
134 rm -rf $(objects)
135 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi
136
137distclean: clean
138 rm -f Makefile include/SDL_config.h sdl-config
139 rm -f SDL.qpg
140 rm -f config.status config.cache config.log libtool $(depend)
141 rm -rf $(srcdir)/autom4te*
142 rm -rf $(srcdir)/test/autom4te*
143 find $(srcdir) \( \
144 -name '*~' -o \
145 -name '*.bak' -o \
146 -name '*.old' -o \
147 -name '*.rej' -o \
148 -name '*.orig' -o \
149 -name '.#*' \) \
150 -exec rm -f {} \;
151 cp $(srcdir)/include/SDL_config.h.default $(srcdir)/include/SDL_config.h
152 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi
153
154dist $(distfile):
155 $(SHELL) $(auxdir)/mkinstalldirs $(distdir)
156 tar cf - $(DIST) | (cd $(distdir); tar xf -)
157 cp $(distdir)/include/SDL_config.h.default $(distdir)/include/SDL_config.h
158 rm -rf `find $(distdir) -name .svn`
159 rm -rf $(distdir)/test/autom4te*
160 find $(distdir) \( \
161 -name '*~' -o \
162 -name '*.bak' -o \
163 -name '*.old' -o \
164 -name '*.rej' -o \
165 -name '*.orig' -o \
166 -name '.#*' \) \
167 -exec rm -f {} \;
168 if test -f $(distdir)/test/Makefile; then (cd $(distdir)/test && make distclean); fi
169 tar cvf - $(distdir) | gzip --best >$(distfile)
170 rm -rf $(distdir)
171
172rpm: $(distfile)
173 rpmbuild -ta $?
174
175# Create a SVN snapshot that people can run update on
176snapshot:
177 svn co http://svn.libsdl.org/branches/SDL-1.2
178 (cd SDL-1.2 && ./autogen.sh && rm -rf autom4te.cache)
179 cp SDL-1.2/include/SDL_config.h.default SDL-1.2/include/SDL_config.h
180 tar zcf $(HOME)/SDL-1.2.tar.gz SDL-1.2
181 rm -f $(HOME)/SDL-1.2.zip
182 zip -r $(HOME)/SDL-1.2.zip SDL-1.2
183 rm -rf SDL-1.2