author | Alex Szpakowski <slime73@gmail.com> |
Sat, 21 May 2016 00:20:52 -0300 | |
changeset 10176 | 3115d38204aa |
parent 9792 | 0569d87c68fc |
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 |
|
6688
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
39 |
SDLTEST_TARGET = libSDL2_test.a |
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
40 |
SDLTEST_OBJECTS = @SDLTEST_OBJECTS@ |
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
41 |
|
9792
0569d87c68fc
Added missing file to the release archive.
Philipp Wiesemann <philipp.wiesemann@arcor.de>
parents:
9785
diff
changeset
|
42 |
SRC_DIST = *.txt acinclude Android.mk autogen.sh android-project build-scripts cmake cmake_uninstall.cmake.in configure configure.in debian docs include Makefile.* sdl2-config.cmake.in sdl2-config.in sdl2.m4 sdl2.pc.in SDL2.spec.in src test VisualC.html VisualC VisualC-WinRT 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
|
43 |
GEN_DIST = SDL2.spec |
1362 | 44 |
|
8876
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
45 |
ifneq ($V,1) |
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
46 |
RUN_CMD_AR = @echo " AR " $@; |
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
47 |
RUN_CMD_CC = @echo " CC " $@; |
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
48 |
RUN_CMD_CXX = @echo " CXX " $@; |
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
49 |
RUN_CMD_LTLINK = @echo " LTLINK" $@; |
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
50 |
RUN_CMD_RANLIB = @echo " RANLIB" $@; |
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
51 |
LIBTOOL += --quiet |
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
52 |
endif |
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
53 |
|
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
54 |
HDRS = \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
55 |
SDL.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
56 |
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
|
57 |
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
|
58 |
SDL_audio.h \ |
8829
6ed74a27066a
Added missing headers that should be installed.
Sam Lantinga <slouken@libsdl.org>
parents:
8827
diff
changeset
|
59 |
SDL_bits.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_blendmode.h \ |
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
61 |
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
|
62 |
SDL_cpuinfo.h \ |
8829
6ed74a27066a
Added missing headers that should be installed.
Sam Lantinga <slouken@libsdl.org>
parents:
8827
diff
changeset
|
63 |
SDL_egl.h \ |
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
64 |
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
|
65 |
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
|
66 |
SDL_events.h \ |
7667
be1cc6f55840
Added SDL_GetBasePath() and SDL_GetPrefPath() in new filesystem module.
Ryan C. Gordon <icculus@icculus.org>
parents:
7387
diff
changeset
|
67 |
SDL_filesystem.h \ |
6690
9548c8a58103
Added hotplug joystick support and simplified game controller API, courtesy of Alfred Reynolds
Sam Lantinga <slouken@libsdl.org>
parents:
6689
diff
changeset
|
68 |
SDL_gamecontroller.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_gesture.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_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
|
71 |
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
|
72 |
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
|
73 |
SDL_keyboard.h \ |
5340 | 74 |
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
|
75 |
SDL_loadso.h \ |
5221
2ee8112bfc6b
Added a simple log message API
Sam Lantinga <slouken@libsdl.org>
parents:
5189
diff
changeset
|
76 |
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
|
77 |
SDL_main.h \ |
6607
a7e743825ede
Needed to add SDL_messagebox.h to installed headers
Sam Lantinga <slouken@libsdl.org>
parents:
6345
diff
changeset
|
78 |
SDL_messagebox.h \ |
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
79 |
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
|
80 |
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
|
81 |
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
|
82 |
SDL_opengl.h \ |
8827
d4ffa5194a49
Added SDL_opengl_glext.h to the list of headers to install.
Ryan C. Gordon <icculus@icculus.org>
parents:
8743
diff
changeset
|
83 |
SDL_opengl_glext.h \ |
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
84 |
SDL_opengles.h \ |
8829
6ed74a27066a
Added missing headers that should be installed.
Sam Lantinga <slouken@libsdl.org>
parents:
8827
diff
changeset
|
85 |
SDL_opengles2_gl2ext.h \ |
6ed74a27066a
Added missing headers that should be installed.
Sam Lantinga <slouken@libsdl.org>
parents:
8827
diff
changeset
|
86 |
SDL_opengles2_gl2.h \ |
6ed74a27066a
Added missing headers that should be installed.
Sam Lantinga <slouken@libsdl.org>
parents:
8827
diff
changeset
|
87 |
SDL_opengles2_gl2platform.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
|
88 |
SDL_opengles2.h \ |
8829
6ed74a27066a
Added missing headers that should be installed.
Sam Lantinga <slouken@libsdl.org>
parents:
8827
diff
changeset
|
89 |
SDL_opengles2_khrplatform.h \ |
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
90 |
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
|
91 |
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
|
92 |
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
|
93 |
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
|
94 |
SDL_rect.h \ |
5145
2f44e6969a59
Split the rendering API out into a separate header file.
Sam Lantinga <slouken@libsdl.org>
parents:
5138
diff
changeset
|
95 |
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
|
96 |
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
|
97 |
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
|
98 |
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
|
99 |
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
|
100 |
SDL_surface.h \ |
6345
b4bbb23d1b4b
Added SDL_system.h to the various projects
Sam Lantinga <slouken@libsdl.org>
parents:
6256
diff
changeset
|
101 |
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
|
102 |
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
|
103 |
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
|
104 |
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
|
105 |
SDL_touch.h \ |
7387
85303f85cb70
Backout hg changset 898992405fa7; lots of things still use SDL_types.h. :/
Ryan C. Gordon <icculus@icculus.org>
parents:
7383
diff
changeset
|
106 |
SDL_types.h \ |
4929
aa8888658021
Use the enumerated type for blend and scale mode instead of int
Sam Lantinga <slouken@libsdl.org>
parents:
4862
diff
changeset
|
107 |
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
|
108 |
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
|
109 |
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
|
110 |
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
|
111 |
|
6689
e2fc3ae07582
Include all the test headers in the test library header install
Sam Lantinga <slouken@libsdl.org>
parents:
6688
diff
changeset
|
112 |
SDLTEST_HDRS = $(shell ls $(srcdir)/include | fgrep SDL_test) |
6688
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
113 |
|
1362 | 114 |
LT_AGE = @LT_AGE@ |
115 |
LT_CURRENT = @LT_CURRENT@ |
|
116 |
LT_RELEASE = @LT_RELEASE@ |
|
117 |
LT_REVISION = @LT_REVISION@ |
|
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
118 |
LT_LDFLAGS = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) |
1362 | 119 |
|
6688
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
120 |
all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) $(objects)/$(SDLTEST_TARGET) |
1622 | 121 |
|
122 |
$(srcdir)/configure: $(srcdir)/configure.in |
|
123 |
@echo "Warning, configure.in is out of date" |
|
124 |
#(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
|
125 |
@sleep 3 |
1362 | 126 |
|
127 |
Makefile: $(srcdir)/Makefile.in |
|
128 |
$(SHELL) config.status $@ |
|
129 |
||
3416 | 130 |
Makefile.in:; |
131 |
||
1362 | 132 |
$(objects): |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
133 |
$(SHELL) $(auxdir)/mkinstalldirs $@ |
1362 | 134 |
|
2982
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
2713
diff
changeset
|
135 |
update-revision: |
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
2713
diff
changeset
|
136 |
$(SHELL) $(auxdir)/updaterev.sh |
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
2713
diff
changeset
|
137 |
|
5346
437e54382293
update-revision is still phony. :)
Sam Lantinga <slouken@libsdl.org>
parents:
5345
diff
changeset
|
138 |
.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 | 139 |
|
5345
0202f62906ca
Added a better way to include build rules in the Makefile
Sam Lantinga <slouken@libsdl.org>
parents:
5341
diff
changeset
|
140 |
$(objects)/$(TARGET): $(OBJECTS) $(VERSION_OBJECTS) |
8876
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
141 |
$(RUN_CMD_LTLINK)$(LIBTOOL) --tag=CC --mode=link $(CC) -o $@ $(OBJECTS) $(VERSION_OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS) |
1362 | 142 |
|
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
143 |
$(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS) |
8876
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
144 |
$(RUN_CMD_AR)$(AR) cru $@ $(SDLMAIN_OBJECTS) |
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
145 |
$(RUN_CMD_RANLIB)$(RANLIB) $@ |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
146 |
|
6688
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
147 |
$(objects)/$(SDLTEST_TARGET): $(SDLTEST_OBJECTS) |
8876
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
148 |
$(RUN_CMD_AR)$(AR) cru $@ $(SDLTEST_OBJECTS) |
60edb019f0fe
Make autoconf-based build quiet by default.
Sam Clegg <sbc@chromium.org>
parents:
8829
diff
changeset
|
149 |
$(RUN_CMD_RANLIB)$(RANLIB) $@ |
6688
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
150 |
|
3352
6dc250ebdd80
The SDL 1.3 documentation will be primarily online wiki based:
Sam Lantinga <slouken@libsdl.org>
parents:
3344
diff
changeset
|
151 |
install: all install-bin install-hdrs install-lib install-data |
1362 | 152 |
install-bin: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
153 |
$(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
|
154 |
$(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
|
155 |
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
|
156 |
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(includedir)/SDL2 |
6688
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
157 |
for file in $(HDRS) $(SDLTEST_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
|
158 |
$(INSTALL) -m 644 $(srcdir)/include/$$file $(DESTDIR)$(includedir)/SDL2/$$file; \ |
1362 | 159 |
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
|
160 |
$(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
|
161 |
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
|
162 |
$(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
|
163 |
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
|
164 |
$(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
|
165 |
fi |
0202f62906ca
Added a better way to include build rules in the Makefile
Sam Lantinga <slouken@libsdl.org>
parents:
5341
diff
changeset
|
166 |
|
6688
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
167 |
install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) $(objects)/$(SDLTEST_TARGET) |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
168 |
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir) |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
169 |
$(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET) |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
170 |
$(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
|
171 |
$(RANLIB) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) |
6688
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
172 |
$(INSTALL) -m 644 $(objects)/$(SDLTEST_TARGET) $(DESTDIR)$(libdir)/$(SDLTEST_TARGET) |
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
173 |
$(RANLIB) $(DESTDIR)$(libdir)/$(SDLTEST_TARGET) |
1362 | 174 |
install-data: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
175 |
$(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
|
176 |
$(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
|
177 |
$(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
|
178 |
$(INSTALL) -m 644 sdl2.pc $(DESTDIR)$(libdir)/pkgconfig |
9785
6e87ae760e6d
Fixed bug 2464 - Configure a sdl2-config.cmake.in together with sdl2.pc.in
Sam Lantinga <slouken@libsdl.org>
parents:
9770
diff
changeset
|
179 |
$(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/cmake/SDL2 |
6e87ae760e6d
Fixed bug 2464 - Configure a sdl2-config.cmake.in together with sdl2.pc.in
Sam Lantinga <slouken@libsdl.org>
parents:
9770
diff
changeset
|
180 |
$(INSTALL) -m 644 sdl2-config.cmake $(DESTDIR)$(libdir)/cmake/SDL2 |
1362 | 181 |
|
3352
6dc250ebdd80
The SDL 1.3 documentation will be primarily online wiki based:
Sam Lantinga <slouken@libsdl.org>
parents:
3344
diff
changeset
|
182 |
uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data |
1362 | 183 |
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
|
184 |
rm -f $(DESTDIR)$(bindir)/sdl2-config |
1362 | 185 |
uninstall-hdrs: |
6688
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
186 |
for file in $(HDRS) $(SDLTEST_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
|
187 |
rm -f $(DESTDIR)$(includedir)/SDL2/$$file; \ |
1362 | 188 |
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
|
189 |
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
|
190 |
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
|
191 |
-rmdir $(DESTDIR)$(includedir)/SDL2 |
1362 | 192 |
uninstall-lib: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
193 |
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(TARGET) |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
194 |
rm -f $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) |
6688
ba31830f0912
Work in progress on an SDL test library
Sam Lantinga <slouken@libsdl.org>
parents:
6607
diff
changeset
|
195 |
rm -f $(DESTDIR)$(libdir)/$(SDLTEST_TARGET) |
1362 | 196 |
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
|
197 |
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
|
198 |
rm -f $(DESTDIR)$(libdir)/pkgconfig/sdl2.pc |
9785
6e87ae760e6d
Fixed bug 2464 - Configure a sdl2-config.cmake.in together with sdl2.pc.in
Sam Lantinga <slouken@libsdl.org>
parents:
9770
diff
changeset
|
199 |
rm -f $(DESTDIR)$(libdir)/cmake/SDL2/sdl2-config.cmake |
1362 | 200 |
|
201 |
clean: |
|
202 |
rm -rf $(objects) |
|
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1362
diff
changeset
|
203 |
if test -f test/Makefile; then (cd test; $(MAKE) $@); fi |
1362 | 204 |
|
205 |
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
|
206 |
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
|
207 |
rm -f config.status config.cache config.log libtool |
1362 | 208 |
rm -rf $(srcdir)/autom4te* |
1603 | 209 |
find $(srcdir) \( \ |
210 |
-name '*~' -o \ |
|
211 |
-name '*.bak' -o \ |
|
212 |
-name '*.old' -o \ |
|
213 |
-name '*.rej' -o \ |
|
214 |
-name '*.orig' -o \ |
|
215 |
-name '.#*' \) \ |
|
1362 | 216 |
-exec rm -f {} \; |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1362
diff
changeset
|
217 |
if test -f test/Makefile; then (cd test; $(MAKE) $@); fi |
1362 | 218 |
|
219 |
dist $(distfile): |
|
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
220 |
$(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
|
221 |
(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
|
222 |
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
|
223 |
find $(distdir) \( \ |
1845 | 224 |
-name '*~' -o \ |
225 |
-name '*.bak' -o \ |
|
226 |
-name '*.old' -o \ |
|
227 |
-name '*.rej' -o \ |
|
228 |
-name '*.orig' -o \ |
|
229 |
-name '.#*' \) \ |
|
230 |
-exec rm -f {} \; |
|
1848
3c5eed71a332
Clean out the tests before creating distribution archive
Sam Lantinga <slouken@libsdl.org>
parents:
1846
diff
changeset
|
231 |
if test -f $(distdir)/test/Makefile; then (cd $(distdir)/test && make distclean); fi |
6886
55fc95e5817b
Added native Debian package information
Sam Lantinga <slouken@libsdl.org>
parents:
6866
diff
changeset
|
232 |
(cd $(distdir); build-scripts/updaterev.sh) |
1362 | 233 |
tar cvf - $(distdir) | gzip --best >$(distfile) |
234 |
rm -rf $(distdir) |
|
235 |
||
236 |
rpm: $(distfile) |
|
237 |
rpmbuild -ta $? |