author | Sam Lantinga <slouken@libsdl.org> |
Fri, 12 Oct 2012 02:20:10 -0700 | |
changeset 6578 | 77d70ec131bc |
parent 6345 | b4bbb23d1b4b |
child 6607 | a7e743825ede |
permissions | -rw-r--r-- |
1362 | 1 |
# Makefile to build and install the SDL library |
2 |
||
3 |
top_builddir = . |
|
4 |
srcdir = @srcdir@ |
|
5 |
objects = build |
|
6 |
prefix = @prefix@ |
|
7 |
exec_prefix = @exec_prefix@ |
|
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
8 |
bindir = @bindir@ |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
9 |
libdir = @libdir@ |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
10 |
includedir = @includedir@ |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
11 |
datarootdir = @datarootdir@ |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
12 |
datadir = @datadir@ |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
13 |
auxdir = @ac_aux_dir@ |
1362 | 14 |
distpath = $(srcdir)/.. |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
15 |
distdir = SDL2-@SDL_VERSION@ |
1362 | 16 |
distfile = $(distdir).tar.gz |
17 |
||
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1362
diff
changeset
|
18 |
@SET_MAKE@ |
1362 | 19 |
SHELL = @SHELL@ |
20 |
CC = @CC@ |
|
21 |
INCLUDE = @INCLUDE@ |
|
22 |
CFLAGS = @BUILD_CFLAGS@ |
|
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1494
diff
changeset
|
23 |
EXTRA_CFLAGS = @EXTRA_CFLAGS@ |
1393
cd3362657144
Pass LDFLAGS to the build system
Sam Lantinga <slouken@libsdl.org>
parents:
1391
diff
changeset
|
24 |
LDFLAGS = @BUILD_LDFLAGS@ |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1494
diff
changeset
|
25 |
EXTRA_LDFLAGS = @EXTRA_LDFLAGS@ |
1362 | 26 |
LIBTOOL = @LIBTOOL@ |
27 |
INSTALL = @INSTALL@ |
|
1419
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
28 |
AR = @AR@ |
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
29 |
RANLIB = @RANLIB@ |
2204
9f64d06fa168
Added support for building version.rc in Windows build.
Sam Lantinga <slouken@libsdl.org>
parents:
2156
diff
changeset
|
30 |
WINDRES = @WINDRES@ |
1362 | 31 |
|
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
32 |
TARGET = libSDL2.la |
1362 | 33 |
OBJECTS = @OBJECTS@ |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
34 |
VERSION_OBJECTS = @VERSION_OBJECTS@ |
1362 | 35 |
|
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
36 |
SDLMAIN_TARGET = libSDL2main.a |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
37 |
SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@ |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
38 |
|
6254
4aa9714c1983
Removed unsupported Watcom files
Sam Lantinga <slouken@libsdl.org>
parents:
6252
diff
changeset
|
39 |
SRC_DIST = acinclude Android.mk autogen.sh BUGS build-scripts configure configure.in COPYING CREDITS include INSTALL Makefile.minimal Makefile.in README* sdl2-config.in sdl2.m4 sdl2.pc.in SDL2.spec.in src test TODO VisualC.html VisualC VisualCE WhatsNew Xcode Xcode-iOS |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
40 |
GEN_DIST = SDL2.spec |
1362 | 41 |
|
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
42 |
HDRS = \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
43 |
SDL.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
44 |
SDL_assert.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
45 |
SDL_atomic.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
46 |
SDL_audio.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
47 |
SDL_blendmode.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
48 |
SDL_clipboard.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
49 |
SDL_cpuinfo.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
50 |
SDL_endian.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
51 |
SDL_error.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
52 |
SDL_events.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
53 |
SDL_gesture.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
54 |
SDL_haptic.h \ |
5189
6f6a9340fb93
Added a hint system to allow configuration hints to be specified by the application.
Sam Lantinga <slouken@libsdl.org>
parents:
5145
diff
changeset
|
55 |
SDL_hints.h \ |
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
56 |
SDL_input.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
57 |
SDL_joystick.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
58 |
SDL_keyboard.h \ |
5340 | 59 |
SDL_keycode.h \ |
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
60 |
SDL_loadso.h \ |
5221
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
5189
diff
changeset
|
61 |
SDL_log.h \ |
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
62 |
SDL_main.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
63 |
SDL_mouse.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
64 |
SDL_mutex.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
65 |
SDL_name.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
66 |
SDL_opengl.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
67 |
SDL_opengles.h \ |
6205
7dd8ea9f282d
Fixed bug 1366 - SDL_opengles2.h is not installed in "include/SDL" under Linux
Sam Lantinga <slouken@libsdl.org>
parents:
6159
diff
changeset
|
68 |
SDL_opengles2.h \ |
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
69 |
SDL_pixels.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
70 |
SDL_platform.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
71 |
SDL_power.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
72 |
SDL_quit.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
73 |
SDL_rect.h \ |
5145
2f44e6969a59
Split the rendering API out into a separate header file.
Sam Lantinga <slouken@libsdl.org>
parents:
5138
diff
changeset
|
74 |
SDL_render.h \ |
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
75 |
SDL_rwops.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
76 |
SDL_scancode.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
77 |
SDL_shape.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
78 |
SDL_stdinc.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
79 |
SDL_surface.h \ |
6345
b4bbb23d1b4b
Added SDL_system.h to the various projects
Sam Lantinga <slouken@libsdl.org>
parents:
6256
diff
changeset
|
80 |
SDL_system.h \ |
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
81 |
SDL_syswm.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
82 |
SDL_thread.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
83 |
SDL_timer.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
84 |
SDL_touch.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
85 |
SDL_types.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
86 |
SDL_version.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
87 |
SDL_video.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
88 |
begin_code.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
89 |
close_code.h |
2122
b15ffacb66d3
Don't install the extra SDL config headers or SDL_copying.h
Sam Lantinga <slouken@libsdl.org>
parents:
2083
diff
changeset
|
90 |
|
1362 | 91 |
LT_AGE = @LT_AGE@ |
92 |
LT_CURRENT = @LT_CURRENT@ |
|
93 |
LT_RELEASE = @LT_RELEASE@ |
|
94 |
LT_REVISION = @LT_REVISION@ |
|
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
95 |
LT_LDFLAGS = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) |
1362 | 96 |
|
5324
cc606b34bd97
The library target directly depends on SDL_revision.h
Sam Lantinga <slouken@libsdl.org>
parents:
5322
diff
changeset
|
97 |
all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) |
1622 | 98 |
|
99 |
$(srcdir)/configure: $(srcdir)/configure.in |
|
100 |
@echo "Warning, configure.in is out of date" |
|
101 |
#(cd $(srcdir) && sh autogen.sh && sh configure) |
|
1623
09375aed0208
Added a delay so the warning message isn't accidentally missed.
Sam Lantinga <slouken@libsdl.org>
parents:
1622
diff
changeset
|
102 |
@sleep 3 |
1362 | 103 |
|
104 |
Makefile: $(srcdir)/Makefile.in |
|
105 |
$(SHELL) config.status $@ |
|
106 |
||
3416 | 107 |
Makefile.in:; |
108 |
||
1362 | 109 |
$(objects): |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
110 |
$(SHELL) $(auxdir)/mkinstalldirs $@ |
1362 | 111 |
|
2982
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
2713
diff
changeset
|
112 |
update-revision: |
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
2713
diff
changeset
|
113 |
$(SHELL) $(auxdir)/updaterev.sh |
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
2713
diff
changeset
|
114 |
|
5346
437e54382293
update-revision is still phony. :)
Sam Lantinga <slouken@libsdl.org>
parents:
5345
diff
changeset
|
115 |
.PHONY: all update-revision install install-bin install-hdrs install-lib install-data uninstall uninstall-bin uninstall-hdrs uninstall-lib uninstall-data clean distclean dist $(OBJECTS:.lo=.d) |
1362 | 116 |
|
5345
0202f62906ca
Added a better way to include build rules in the Makefile
Sam Lantinga <slouken@libsdl.org>
parents:
5341
diff
changeset
|
117 |
$(objects)/$(TARGET): $(OBJECTS) $(VERSION_OBJECTS) |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
118 |
$(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(VERSION_OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS) |
1362 | 119 |
|
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
120 |
$(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS) |
1419
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
121 |
$(AR) cru $@ $(SDLMAIN_OBJECTS) |
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
122 |
$(RANLIB) $@ |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
123 |
|
3352
6dc250ebdd80
The SDL 1.3 documentation will be primarily online wiki based:
Sam Lantinga <slouken@libsdl.org>
parents:
3344
diff
changeset
|
124 |
install: all install-bin install-hdrs install-lib install-data |
1362 | 125 |
install-bin: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
126 |
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(bindir) |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
127 |
$(INSTALL) -m 755 sdl2-config $(DESTDIR)$(bindir)/sdl2-config |
5345
0202f62906ca
Added a better way to include build rules in the Makefile
Sam Lantinga <slouken@libsdl.org>
parents:
5341
diff
changeset
|
128 |
install-hdrs: update-revision |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
129 |
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(includedir)/SDL2 |
2122
b15ffacb66d3
Don't install the extra SDL config headers or SDL_copying.h
Sam Lantinga <slouken@libsdl.org>
parents:
2083
diff
changeset
|
130 |
for file in $(HDRS); do \ |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
131 |
$(INSTALL) -m 644 $(srcdir)/include/$$file $(DESTDIR)$(includedir)/SDL2/$$file; \ |
1362 | 132 |
done |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
133 |
$(INSTALL) -m 644 include/SDL_config.h $(DESTDIR)$(includedir)/SDL2/SDL_config.h |
5345
0202f62906ca
Added a better way to include build rules in the Makefile
Sam Lantinga <slouken@libsdl.org>
parents:
5341
diff
changeset
|
134 |
if test -f include/SDL_revision.h; then \ |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
135 |
$(INSTALL) -m 644 include/SDL_revision.h $(DESTDIR)$(includedir)/SDL2/SDL_revision.h; \ |
5345
0202f62906ca
Added a better way to include build rules in the Makefile
Sam Lantinga <slouken@libsdl.org>
parents:
5341
diff
changeset
|
136 |
else \ |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
137 |
$(INSTALL) -m 644 $(srcdir)/include/SDL_revision.h $(DESTDIR)$(includedir)/SDL2/SDL_revision.h; \ |
5345
0202f62906ca
Added a better way to include build rules in the Makefile
Sam Lantinga <slouken@libsdl.org>
parents:
5341
diff
changeset
|
138 |
fi |
0202f62906ca
Added a better way to include build rules in the Makefile
Sam Lantinga <slouken@libsdl.org>
parents:
5341
diff
changeset
|
139 |
|
2151 | 140 |
install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
141 |
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir) |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
142 |
$(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET) |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
143 |
$(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
144 |
$(RANLIB) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) |
1362 | 145 |
install-data: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
146 |
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(datadir)/aclocal |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
147 |
$(INSTALL) -m 644 $(srcdir)/sdl2.m4 $(DESTDIR)$(datadir)/aclocal/sdl2.m4 |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
148 |
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
149 |
$(INSTALL) -m 644 sdl2.pc $(DESTDIR)$(libdir)/pkgconfig |
1362 | 150 |
|
3352
6dc250ebdd80
The SDL 1.3 documentation will be primarily online wiki based:
Sam Lantinga <slouken@libsdl.org>
parents:
3344
diff
changeset
|
151 |
uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data |
1362 | 152 |
uninstall-bin: |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
153 |
rm -f $(DESTDIR)$(bindir)/sdl2-config |
1362 | 154 |
uninstall-hdrs: |
2122
b15ffacb66d3
Don't install the extra SDL config headers or SDL_copying.h
Sam Lantinga <slouken@libsdl.org>
parents:
2083
diff
changeset
|
155 |
for file in $(HDRS); do \ |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
156 |
rm -f $(DESTDIR)$(includedir)/SDL2/$$file; \ |
1362 | 157 |
done |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
158 |
rm -f $(DESTDIR)$(includedir)/SDL2/SDL_config.h |
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
159 |
rm -f $(DESTDIR)$(includedir)/SDL2/SDL_revision.h |
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
160 |
-rmdir $(DESTDIR)$(includedir)/SDL2 |
1362 | 161 |
uninstall-lib: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
162 |
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(TARGET) |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
163 |
rm -f $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) |
1362 | 164 |
uninstall-data: |
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
165 |
rm -f $(DESTDIR)$(datadir)/aclocal/sdl2.m4 |
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
166 |
rm -f $(DESTDIR)$(libdir)/pkgconfig/sdl2.pc |
1362 | 167 |
|
168 |
clean: |
|
169 |
rm -rf $(objects) |
|
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1362
diff
changeset
|
170 |
if test -f test/Makefile; then (cd test; $(MAKE) $@); fi |
1362 | 171 |
|
172 |
distclean: clean |
|
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6235
diff
changeset
|
173 |
rm -f Makefile Makefile.rules sdl2-config |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
174 |
rm -f config.status config.cache config.log libtool |
1362 | 175 |
rm -rf $(srcdir)/autom4te* |
1603 | 176 |
find $(srcdir) \( \ |
177 |
-name '*~' -o \ |
|
178 |
-name '*.bak' -o \ |
|
179 |
-name '*.old' -o \ |
|
180 |
-name '*.rej' -o \ |
|
181 |
-name '*.orig' -o \ |
|
182 |
-name '.#*' \) \ |
|
1362 | 183 |
-exec rm -f {} \; |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1362
diff
changeset
|
184 |
if test -f test/Makefile; then (cd test; $(MAKE) $@); fi |
1362 | 185 |
|
186 |
dist $(distfile): |
|
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
187 |
$(SHELL) $(auxdir)/mkinstalldirs $(distdir) |
5498
ef1db08c40ac
Make it possible to run "make dist" from a separate build directory.
Sam Lantinga <slouken@libsdl.org>
parents:
5393
diff
changeset
|
188 |
(cd $(srcdir); tar cf - $(SRC_DIST)) | (cd $(distdir); tar xf -) |
ef1db08c40ac
Make it possible to run "make dist" from a separate build directory.
Sam Lantinga <slouken@libsdl.org>
parents:
5393
diff
changeset
|
189 |
tar cf - $(GEN_DIST) | (cd $(distdir); tar xf -) |
1846
699eaff87cbb
Whoops, clean files in the dist directory
Sam Lantinga <slouken@libsdl.org>
parents:
1845
diff
changeset
|
190 |
find $(distdir) \( \ |
1845 | 191 |
-name '*~' -o \ |
192 |
-name '*.bak' -o \ |
|
193 |
-name '*.old' -o \ |
|
194 |
-name '*.rej' -o \ |
|
195 |
-name '*.orig' -o \ |
|
196 |
-name '.#*' \) \ |
|
197 |
-exec rm -f {} \; |
|
1848
3c5eed71a332
Clean out the tests before creating distribution archive
Sam Lantinga <slouken@libsdl.org>
parents:
1846
diff
changeset
|
198 |
if test -f $(distdir)/test/Makefile; then (cd $(distdir)/test && make distclean); fi |
1362 | 199 |
tar cvf - $(distdir) | gzip --best >$(distfile) |
200 |
rm -rf $(distdir) |
|
201 |
||
202 |
rpm: $(distfile) |
|
203 |
rpmbuild -ta $? |
|
1424
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
204 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
205 |
# Run indent on the source to standardize coding style |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
206 |
indent: |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
207 |
@echo "Running indent... modified files:" |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
208 |
@cd $(srcdir) && \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
209 |
find . \( \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
210 |
-name '*.h' -o \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
211 |
-name '*.c' -o \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
212 |
-name '*.cc' \) \ |
2220
4d2d0548f5b2
Don't run indent on the Xcode templates
Sam Lantinga <slouken@libsdl.org>
parents:
2207
diff
changeset
|
213 |
-print | fgrep -v ./Xcode | \ |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
214 |
while read file; do \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
215 |
indent "$$file" -o "$$file.indent"; \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
216 |
if cmp "$$file" "$$file.indent" >/dev/null; then \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
217 |
rm -f "$$file.indent"; \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
218 |
else \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
219 |
echo "$$file"; \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
220 |
mv -f "$$file.indent" "$$file"; \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
221 |
fi; \ |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
222 |
done |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
223 |
|
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
224 |
# Run indent and then commit modified files |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1894
diff
changeset
|
225 |
commit: indent |
5310
a9945ce48999
Made it possible to build SDL from a fresh checkout without any additional steps.
Sam Lantinga <slouken@libsdl.org>
parents:
5221
diff
changeset
|
226 |
hg commit |