Skip to content

Latest commit

 

History

History
178 lines (155 loc) · 6.35 KB

Makefile.in

File metadata and controls

178 lines (155 loc) · 6.35 KB
 
1
2
3
4
5
6
7
8
# Makefile to build and install the SDL library
top_builddir = .
srcdir = @srcdir@
objects = build
depend = build-deps
prefix = @prefix@
exec_prefix = @exec_prefix@
9
10
11
12
13
14
bindir = @bindir@
libdir = @libdir@
includedir = @includedir@
datarootdir = @datarootdir@
datadir = @datadir@
mandir = @mandir@
16
17
18
19
distpath = $(srcdir)/..
distdir = SDL-@SDL_VERSION@
distfile = $(distdir).tar.gz
21
22
23
24
SHELL = @SHELL@
CC = @CC@
INCLUDE = @INCLUDE@
CFLAGS = @BUILD_CFLAGS@
25
EXTRA_CFLAGS = @EXTRA_CFLAGS@
26
LDFLAGS = @BUILD_LDFLAGS@
27
EXTRA_LDFLAGS = @EXTRA_LDFLAGS@
28
29
30
LIBTOOL = @LIBTOOL@
INSTALL = @INSTALL@
NASM = @NASM@ @NASMFLAGS@
31
32
AR = @AR@
RANLIB = @RANLIB@
34
35
36
37
38
TARGET = libSDL.la
SOURCES = @SOURCES@
OBJECTS = @OBJECTS@
40
41
SDLMAIN_SOURCES = @SDLMAIN_SOURCES@
SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@
42
SDLMAIN_LDFLAGS = @SDLMAIN_LDFLAGS@
44
DIST = 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 VisualC.html VisualC Watcom-OS2.zip Watcom-Win32.zip symbian.zip WhatsNew Xcode
46
47
HDRS = 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
48
49
50
51
LT_AGE = @LT_AGE@
LT_CURRENT = @LT_CURRENT@
LT_RELEASE = @LT_RELEASE@
LT_REVISION = @LT_REVISION@
52
LT_LDFLAGS = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
54
55
56
57
58
all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
$(srcdir)/configure: $(srcdir)/configure.in
@echo "Warning, configure.in is out of date"
#(cd $(srcdir) && sh autogen.sh && sh configure)
60
61
62
63
64
Makefile: $(srcdir)/Makefile.in
$(SHELL) config.status $@
$(objects):
65
$(SHELL) $(auxdir)/mkinstalldirs $@
66
67
68
.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
depend:
69
@SOURCES="$(SOURCES) $(SDLMAIN_SOURCES)" INCLUDE="$(INCLUDE)" output="$(depend)" \
70
$(SHELL) $(auxdir)/makedep.sh
71
72
73
74
include $(depend)
$(objects)/$(TARGET): $(OBJECTS)
75
$(LIBTOOL) --mode=link $(CC) -o $@ $^ $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS)
77
$(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS)
78
79
$(LIBTOOL) --mode=link $(CC) -o $@ $^ $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS) $(SDLMAIN_LDFLAGS)
81
install: all install-bin install-hdrs install-lib install-data install-man
83
84
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(bindir)
$(INSTALL) -m 755 sdl-config $(DESTDIR)$(bindir)/sdl-config
86
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(includedir)/SDL
88
$(INSTALL) -m 644 $(srcdir)/include/$$file $(DESTDIR)$(includedir)/SDL/$$file; \
90
$(INSTALL) -m 644 include/SDL_config.h $(DESTDIR)$(includedir)/SDL/SDL_config.h
91
install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET)
92
93
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)
$(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET)
94
$(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
96
97
98
99
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(datadir)/aclocal
$(INSTALL) -m 644 $(srcdir)/sdl.m4 $(DESTDIR)$(datadir)/aclocal/sdl.m4
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig
$(INSTALL) -m 644 sdl.pc $(DESTDIR)$(libdir)/pkgconfig
101
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(mandir)/man3
102
103
for src in $(srcdir)/docs/man3/*.3; do \
file=`echo $$src | sed -e 's|^.*/||'`; \
104
$(INSTALL) -m 644 $$src $(DESTDIR)$(mandir)/man3/$$file; \
107
uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man
108
uninstall-bin:
109
rm -f $(DESTDIR)$(bindir)/sdl-config
110
uninstall-hdrs:
112
rm -f $(DESTDIR)$(includedir)/SDL/$$file; \
114
115
rm -f $(DESTDIR)$(includedir)/SDL/SDL_config.h
-rmdir $(DESTDIR)$(includedir)/SDL
116
uninstall-lib:
117
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(TARGET)
118
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET)
119
uninstall-data:
120
rm -f $(DESTDIR)$(datadir)/aclocal/sdl.m4
121
rm -f $(DESTDIR)$(libdir)/pkgconfig/sdl.pc
122
123
124
uninstall-man:
for src in $(srcdir)/docs/man3/*.3; do \
file=`echo $$src | sed -e 's|^.*/||'`; \
125
rm -f $(DESTDIR)$(mandir)/man3/$$file; \
126
127
128
129
done
clean:
rm -rf $(objects)
130
if test -f test/Makefile; then (cd test; $(MAKE) $@); fi
131
132
133
134
135
136
distclean: clean
rm -f Makefile include/SDL_config.h sdl-config
rm -f SDL.qpg
rm -f config.status config.cache config.log libtool $(depend)
rm -rf $(srcdir)/autom4te*
137
rm -rf $(srcdir)/test/autom4te*
138
139
140
141
142
143
144
find $(srcdir) \( \
-name '*~' -o \
-name '*.bak' -o \
-name '*.old' -o \
-name '*.rej' -o \
-name '*.orig' -o \
-name '.#*' \) \
145
-exec rm -f {} \;
146
cp $(srcdir)/include/SDL_config.h.default $(srcdir)/include/SDL_config.h
147
if test -f test/Makefile; then (cd test; $(MAKE) $@); fi
148
149
dist $(distfile):
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 .svn`
154
rm -rf $(distdir)/test/autom4te*
156
157
158
159
160
161
162
-name '*~' -o \
-name '*.bak' -o \
-name '*.old' -o \
-name '*.rej' -o \
-name '*.orig' -o \
-name '.#*' \) \
-exec rm -f {} \;
163
if test -f $(distdir)/test/Makefile; then (cd $(distdir)/test && make distclean); fi
164
165
166
167
168
tar cvf - $(distdir) | gzip --best >$(distfile)
rm -rf $(distdir)
rpm: $(distfile)
rpmbuild -ta $?
170
# Create a SVN snapshot that people can run update on
172
svn co http://svn.libsdl.org/branches/SDL-1.2
173
174
(cd SDL-1.2 && ./autogen.sh && rm -rf autom4te.cache)
cp SDL-1.2/include/SDL_config.h.default SDL-1.2/include/SDL_config.h