author | Sam Lantinga <slouken@libsdl.org> |
Mon, 06 Mar 2006 18:31:30 +0000 | |
changeset 1476 | 14937d7b7527 |
parent 1451 | b89bce877c0d |
child 1485 | e507811313ee |
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 |
depend = build-deps |
|
7 |
prefix = @prefix@ |
|
8 |
exec_prefix = @exec_prefix@ |
|
1390 | 9 |
bindir = $(DESTDIR)@bindir@ |
10 |
libdir = $(DESTDIR)@libdir@ |
|
11 |
includedir = $(DESTDIR)@includedir@ |
|
12 |
datadir = $(DESTDIR)@datadir@ |
|
13 |
mandir = $(DESTDIR)@mandir@ |
|
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
14 |
auxdir = @ac_aux_dir@ |
1362 | 15 |
distpath = $(srcdir)/.. |
16 |
distdir = SDL-@SDL_VERSION@ |
|
17 |
distfile = $(distdir).tar.gz |
|
18 |
||
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1362
diff
changeset
|
19 |
@SET_MAKE@ |
1362 | 20 |
SHELL = @SHELL@ |
21 |
CC = @CC@ |
|
22 |
INCLUDE = @INCLUDE@ |
|
23 |
CFLAGS = @BUILD_CFLAGS@ |
|
1393
cd3362657144
Pass LDFLAGS to the build system
Sam Lantinga <slouken@libsdl.org>
parents:
1391
diff
changeset
|
24 |
LDFLAGS = @BUILD_LDFLAGS@ |
1362 | 25 |
LIBTOOL = @LIBTOOL@ |
26 |
INSTALL = @INSTALL@ |
|
27 |
NASM = @NASM@ @NASMFLAGS@ |
|
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@ |
1362 | 30 |
|
31 |
TARGET = libSDL.la |
|
32 |
SOURCES = @SOURCES@ |
|
33 |
OBJECTS = @OBJECTS@ |
|
34 |
||
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
35 |
SDLMAIN_TARGET = libSDLmain.a |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
36 |
SDLMAIN_SOURCES = @SDLMAIN_SOURCES@ |
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 |
|
1442
e3242177fe4a
Updated OS/2 build, yay!
Sam Lantinga <slouken@libsdl.org>
parents:
1424
diff
changeset
|
39 |
DIST = acinclude.m4 autogen.sh Borland.html Borland.zip BUGS build-scripts configure configure.in COPYING CREDITS CWprojects.sea.bin docs docs.html EpocBuildFiles.zip include INSTALL Makefile.dc Makefile.in MPWmake.sea.bin PBProjects.tar.gz README* sdl-config.in sdl.m4 SDL.qpg.in SDL.spec SDL.spec.in src test TODO VisualCE.zip VisualC.html VisualC.zip Watcom-OS2.zip WhatsNew Xcode21.tar.gz Xcode.tar.gz XcodeUniversal.tar.gz |
1362 | 40 |
|
41 |
LT_AGE = @LT_AGE@ |
|
42 |
LT_CURRENT = @LT_CURRENT@ |
|
43 |
LT_RELEASE = @LT_RELEASE@ |
|
44 |
LT_REVISION = @LT_REVISION@ |
|
45 |
LT_LDFLAGS = -no-undefined -rpath $(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) |
|
46 |
||
1401
1819fd069e89
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1397
diff
changeset
|
47 |
all: Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) |
1362 | 48 |
|
49 |
Makefile: $(srcdir)/Makefile.in |
|
50 |
$(SHELL) config.status $@ |
|
51 |
||
52 |
$(objects): |
|
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
53 |
$(SHELL) $(auxdir)/mkinstalldirs $@ |
1362 | 54 |
|
55 |
.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 |
|
56 |
depend: |
|
1419
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
57 |
@SOURCES="$(SOURCES)" INCLUDE="$(INCLUDE)" objects="$(objects)" output="$(depend)" \ |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
58 |
$(SHELL) $(auxdir)/makedep.sh |
1419
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
59 |
@for src in $(SDLMAIN_SOURCES); do \ |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
60 |
obj=`echo $$src | sed -e 's|.*/||' -e 's|\.[^\.]*$$|.o|'`; \ |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
61 |
echo "$(objects)/$$obj: $$src" >>$(depend); \ |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
62 |
echo " \$$(CC) \$$(CFLAGS) -c $$src -o \$$@" >>$(depend); \ |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
63 |
done |
1362 | 64 |
|
65 |
include $(depend) |
|
66 |
||
67 |
$(objects)/$(TARGET): $(OBJECTS) |
|
68 |
$(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(LDFLAGS) $(LIBS) $(LT_LDFLAGS) |
|
69 |
||
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
70 |
$(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS) |
1419
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
71 |
$(AR) cru $@ $(SDLMAIN_OBJECTS) |
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
72 |
$(RANLIB) $@ |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
73 |
|
1362 | 74 |
install: install-bin install-hdrs install-lib install-data install-man |
75 |
install-bin: |
|
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
76 |
$(SHELL) $(auxdir)/mkinstalldirs $(bindir) |
1476
14937d7b7527
Date: Mon, 6 Mar 2006 19:00:45 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
1451
diff
changeset
|
77 |
$(INSTALL) -m 755 sdl-config $(bindir)/sdl-config |
1362 | 78 |
install-hdrs: |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
79 |
$(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL |
1362 | 80 |
for src in $(srcdir)/include/*.h; do \ |
81 |
file=`echo $$src | sed -e 's|^.*/||'`; \ |
|
1394
e57f8d1344b6
Set the install permissions correctly
Sam Lantinga <slouken@libsdl.org>
parents:
1393
diff
changeset
|
82 |
$(INSTALL) -m 644 $$src $(includedir)/SDL/$$file; \ |
1362 | 83 |
done |
1394
e57f8d1344b6
Set the install permissions correctly
Sam Lantinga <slouken@libsdl.org>
parents:
1393
diff
changeset
|
84 |
$(INSTALL) -m 644 include/SDL_config.h $(includedir)/SDL/SDL_config.h |
1362 | 85 |
install-lib: |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
86 |
$(SHELL) $(auxdir)/mkinstalldirs $(libdir) |
1362 | 87 |
$(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(libdir)/$(TARGET) |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
88 |
$(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(libdir)/$(SDLMAIN_TARGET) |
1419
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
89 |
$(RANLIB) $(libdir)/$(SDLMAIN_TARGET) |
1362 | 90 |
install-data: |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
91 |
$(SHELL) $(auxdir)/mkinstalldirs $(datadir)/aclocal |
1394
e57f8d1344b6
Set the install permissions correctly
Sam Lantinga <slouken@libsdl.org>
parents:
1393
diff
changeset
|
92 |
$(INSTALL) -m 644 $(srcdir)/sdl.m4 $(datadir)/aclocal/sdl.m4 |
1362 | 93 |
install-man: |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
94 |
$(SHELL) $(auxdir)/mkinstalldirs $(mandir)/man3 |
1362 | 95 |
for src in $(srcdir)/docs/man3/*.3; do \ |
96 |
file=`echo $$src | sed -e 's|^.*/||'`; \ |
|
1394
e57f8d1344b6
Set the install permissions correctly
Sam Lantinga <slouken@libsdl.org>
parents:
1393
diff
changeset
|
97 |
$(INSTALL) -m 644 $$src $(mandir)/man3/$$file; \ |
1362 | 98 |
done |
99 |
||
100 |
uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-man |
|
101 |
uninstall-bin: |
|
102 |
rm -f $(bindir)/sdl-config |
|
103 |
uninstall-hdrs: |
|
104 |
for src in $(srcdir)/include/*.h; do \ |
|
105 |
file=`echo $$src | sed -e 's|^.*/||'`; \ |
|
106 |
rm -f $(includedir)/SDL/$$file; \ |
|
107 |
done |
|
108 |
rm -f $(includedir)/SDL/SDL_config.h |
|
109 |
uninstall-lib: |
|
110 |
$(LIBTOOL) --mode=uninstall rm -f $(libdir)/$(TARGET) |
|
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
111 |
rm -f $(libdir)/$(SDLMAIN_TARGET) |
1362 | 112 |
uninstall-data: |
113 |
rm -f $(datadir)/aclocal/sdl.m4 |
|
114 |
uninstall-man: |
|
115 |
for src in $(srcdir)/docs/man3/*.3; do \ |
|
116 |
file=`echo $$src | sed -e 's|^.*/||'`; \ |
|
117 |
rm -f $(mandir)/man3/$$file; \ |
|
118 |
done |
|
119 |
||
120 |
clean: |
|
121 |
rm -rf $(objects) |
|
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1362
diff
changeset
|
122 |
if test -f test/Makefile; then (cd test; $(MAKE) $@); fi |
1362 | 123 |
|
124 |
distclean: clean |
|
125 |
rm -f Makefile include/SDL_config.h sdl-config |
|
126 |
rm -f SDL.qpg |
|
127 |
rm -f config.status config.cache config.log libtool $(depend) |
|
128 |
rm -rf $(srcdir)/autom4te* |
|
129 |
find $(srcdir) \ |
|
130 |
-name '*~' -o -name '*.bak' -o -name '*.old' -o -name '*.rej' -o \ |
|
131 |
-name '.#*' \ |
|
132 |
-exec rm -f {} \; |
|
133 |
cp include/SDL_config.h.minimal include/SDL_config.h |
|
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1362
diff
changeset
|
134 |
if test -f test/Makefile; then (cd test; $(MAKE) $@); fi |
1362 | 135 |
|
136 |
dist $(distfile): |
|
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
137 |
$(SHELL) $(auxdir)/mkinstalldirs $(distdir) |
1362 | 138 |
tar cf - $(DIST) | (cd $(distdir); tar xf -) |
139 |
rm -rf `find $(distdir) -name CVS` |
|
1382
b34d38f76a2a
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1380
diff
changeset
|
140 |
rm -f `find $(distdir) -name '.cvsignore'` |
1362 | 141 |
rm -f `find $(distdir) -name '.#*'` |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
142 |
rmdir `find $(distdir) -type d -empty` |
1362 | 143 |
tar cvf - $(distdir) | gzip --best >$(distfile) |
144 |
rm -rf $(distdir) |
|
145 |
||
146 |
rpm: $(distfile) |
|
147 |
rpmbuild -ta $? |
|
1424
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
148 |
|
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
149 |
# Create a CVS snapshot that people can run update -d on |
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
150 |
CVSROOT = :pserver:guest@libsdl.org:/home/sdlweb/libsdl.org/cvs |
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
151 |
snapshot: |
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
152 |
cvs -d $(CVSROOT) login |
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
153 |
cvs -d $(CVSROOT) checkout -P SDL12 |
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
154 |
(cd SDL12 && ./autogen.sh && rm -rf autom4te.cache) |
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
155 |
mv SDL12 SDL-1.2 |
1448
9a845c7b8b35
Build both the .tar.gz and .zip archives when creating a CVS snapshot.
Sam Lantinga <slouken@libsdl.org>
parents:
1442
diff
changeset
|
156 |
tar zcf $(HOME)/SDL-1.2.tar.gz SDL-1.2 |
1451
b89bce877c0d
Argh, I forgot that zip merges files into the archive instead of recreating it.
Sam Lantinga <slouken@libsdl.org>
parents:
1448
diff
changeset
|
157 |
rm -f $(HOME)/SDL-1.2.zip |
1448
9a845c7b8b35
Build both the .tar.gz and .zip archives when creating a CVS snapshot.
Sam Lantinga <slouken@libsdl.org>
parents:
1442
diff
changeset
|
158 |
zip -r $(HOME)/SDL-1.2.zip SDL-1.2 |
1424
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
159 |
rm -rf SDL-1.2 |