Mercurial > sdl-ios-xcode
annotate Makefile.in @ 1401:1819fd069e89
*** empty log message ***
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 21 Feb 2006 08:34:45 +0000 |
parents | b189a73aa335 |
children | 4fe98eace733 |
rev | line source |
---|---|
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@ | |
28 | |
29 TARGET = libSDL.la | |
30 SOURCES = @SOURCES@ | |
31 OBJECTS = @OBJECTS@ | |
32 | |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
33 SDLMAIN_TARGET = libSDLmain.a |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
34 SDLMAIN_SOURCES = @SDLMAIN_SOURCES@ |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
35 SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@ |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
36 |
1362 | 37 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 setvars.cmd src test TODO VisualCE.zip VisualC.html VisualC.zip Watcom.mif WhatsNew Xcode21.tar.gz Xcode.tar.gz XcodeUniversal.tar.gz |
38 | |
39 LT_AGE = @LT_AGE@ | |
40 LT_CURRENT = @LT_CURRENT@ | |
41 LT_RELEASE = @LT_RELEASE@ | |
42 LT_REVISION = @LT_REVISION@ | |
43 LT_LDFLAGS = -no-undefined -rpath $(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) | |
44 | |
1401
1819fd069e89
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1397
diff
changeset
|
45 all: Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) |
1362 | 46 |
47 Makefile: $(srcdir)/Makefile.in | |
48 $(SHELL) config.status $@ | |
49 | |
50 $(objects): | |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
51 $(SHELL) $(auxdir)/mkinstalldirs $@ |
1362 | 52 |
53 .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 | |
54 depend: | |
55 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
|
56 $(SHELL) $(auxdir)/makedep.sh |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
57 for src in $(SDLMAIN_SOURCES); do \ |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
58 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
|
59 echo "$(objects)/$$obj: $$src" >>$(depend); \ |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
60 echo " \$$(CC) \$$(CFLAGS) -c $$src -o \$$@" >>$(depend); \ |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
61 done |
1362 | 62 |
63 include $(depend) | |
64 | |
65 $(objects)/$(TARGET): $(OBJECTS) | |
66 $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(LDFLAGS) $(LIBS) $(LT_LDFLAGS) | |
67 | |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
68 $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS) |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
69 @AR@ cru $@ $(SDLMAIN_OBJECTS) |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
70 @RANLIB@ $@ |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
71 |
1362 | 72 install: install-bin install-hdrs install-lib install-data install-man |
73 install-bin: | |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
74 $(SHELL) $(auxdir)/mkinstalldirs $(bindir) |
1362 | 75 $(INSTALL) -m 755 $(srcdir)/sdl-config $(bindir)/sdl-config |
76 install-hdrs: | |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
77 $(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL |
1362 | 78 for src in $(srcdir)/include/*.h; do \ |
79 file=`echo $$src | sed -e 's|^.*/||'`; \ | |
1394
e57f8d1344b6
Set the install permissions correctly
Sam Lantinga <slouken@libsdl.org>
parents:
1393
diff
changeset
|
80 $(INSTALL) -m 644 $$src $(includedir)/SDL/$$file; \ |
1362 | 81 done |
1394
e57f8d1344b6
Set the install permissions correctly
Sam Lantinga <slouken@libsdl.org>
parents:
1393
diff
changeset
|
82 $(INSTALL) -m 644 include/SDL_config.h $(includedir)/SDL/SDL_config.h |
1362 | 83 install-lib: |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
84 $(SHELL) $(auxdir)/mkinstalldirs $(libdir) |
1362 | 85 $(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
|
86 $(INSTALL) -m 644 $(objects)/$(SDLMAIN_TARGET) $(libdir)/$(SDLMAIN_TARGET) |
1362 | 87 install-data: |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
88 $(SHELL) $(auxdir)/mkinstalldirs $(datadir)/aclocal |
1394
e57f8d1344b6
Set the install permissions correctly
Sam Lantinga <slouken@libsdl.org>
parents:
1393
diff
changeset
|
89 $(INSTALL) -m 644 $(srcdir)/sdl.m4 $(datadir)/aclocal/sdl.m4 |
1362 | 90 install-man: |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
91 $(SHELL) $(auxdir)/mkinstalldirs $(mandir)/man3 |
1362 | 92 for src in $(srcdir)/docs/man3/*.3; do \ |
93 file=`echo $$src | sed -e 's|^.*/||'`; \ | |
1394
e57f8d1344b6
Set the install permissions correctly
Sam Lantinga <slouken@libsdl.org>
parents:
1393
diff
changeset
|
94 $(INSTALL) -m 644 $$src $(mandir)/man3/$$file; \ |
1362 | 95 done |
96 | |
97 uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-man | |
98 uninstall-bin: | |
99 rm -f $(bindir)/sdl-config | |
100 uninstall-hdrs: | |
101 for src in $(srcdir)/include/*.h; do \ | |
102 file=`echo $$src | sed -e 's|^.*/||'`; \ | |
103 rm -f $(includedir)/SDL/$$file; \ | |
104 done | |
105 rm -f $(includedir)/SDL/SDL_config.h | |
106 uninstall-lib: | |
107 $(LIBTOOL) --mode=uninstall rm -f $(libdir)/$(TARGET) | |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
108 rm -f $(libdir)/$(SDLMAIN_TARGET) |
1362 | 109 uninstall-data: |
110 rm -f $(datadir)/aclocal/sdl.m4 | |
111 uninstall-man: | |
112 for src in $(srcdir)/docs/man3/*.3; do \ | |
113 file=`echo $$src | sed -e 's|^.*/||'`; \ | |
114 rm -f $(mandir)/man3/$$file; \ | |
115 done | |
116 | |
117 clean: | |
118 rm -rf $(objects) | |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1362
diff
changeset
|
119 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi |
1362 | 120 |
121 distclean: clean | |
122 rm -f Makefile include/SDL_config.h sdl-config | |
123 rm -f SDL.qpg | |
124 rm -f config.status config.cache config.log libtool $(depend) | |
125 rm -rf $(srcdir)/autom4te* | |
126 find $(srcdir) \ | |
127 -name '*~' -o -name '*.bak' -o -name '*.old' -o -name '*.rej' -o \ | |
128 -name '.#*' \ | |
129 -exec rm -f {} \; | |
130 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
|
131 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi |
1362 | 132 |
133 dist $(distfile): | |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
134 $(SHELL) $(auxdir)/mkinstalldirs $(distdir) |
1362 | 135 tar cf - $(DIST) | (cd $(distdir); tar xf -) |
136 rm -rf `find $(distdir) -name CVS` | |
1382
b34d38f76a2a
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1380
diff
changeset
|
137 rm -f `find $(distdir) -name '.cvsignore'` |
1362 | 138 rm -f `find $(distdir) -name '.#*'` |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
139 rmdir `find $(distdir) -type d -empty` |
1362 | 140 tar cvf - $(distdir) | gzip --best >$(distfile) |
141 rm -rf $(distdir) | |
142 | |
143 rpm: $(distfile) | |
144 rpmbuild -ta $? |