Mercurial > sdl-ios-xcode
annotate Makefile.in @ 3349:8f80081f5ab8
Upgrading libtool didn't fix bug #499
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 07 Oct 2009 04:31:45 +0000 |
parents | b2abf7a772fc |
children | 6dc250ebdd80 |
rev | line source |
---|---|
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@ |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
13 mandir = @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@ | |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1494
diff
changeset
|
24 EXTRA_CFLAGS = @EXTRA_CFLAGS@ |
1393
cd3362657144
Pass LDFLAGS to the build system
Sam Lantinga <slouken@libsdl.org>
parents:
1391
diff
changeset
|
25 LDFLAGS = @BUILD_LDFLAGS@ |
1521
9b9212e4810c
CFLAGS are separate from EXTRA_CFLAGS
Sam Lantinga <slouken@libsdl.org>
parents:
1494
diff
changeset
|
26 EXTRA_LDFLAGS = @EXTRA_LDFLAGS@ |
1362 | 27 LIBTOOL = @LIBTOOL@ |
28 INSTALL = @INSTALL@ | |
29 NASM = @NASM@ @NASMFLAGS@ | |
1419
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
30 AR = @AR@ |
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
31 RANLIB = @RANLIB@ |
2204
9f64d06fa168
Added support for building version.rc in Windows build.
Sam Lantinga <slouken@libsdl.org>
parents:
2156
diff
changeset
|
32 WINDRES = @WINDRES@ |
1362 | 33 |
34 TARGET = libSDL.la | |
35 OBJECTS = @OBJECTS@ | |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
36 VERSION_OBJECTS = @VERSION_OBJECTS@ |
1362 | 37 |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
38 SDLMAIN_TARGET = libSDLmain.a |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
39 SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@ |
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
40 |
3257
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3180
diff
changeset
|
41 # PS3 SPU programs |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3180
diff
changeset
|
42 SPU_GCC = @SPU_GCC@ |
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3180
diff
changeset
|
43 EMBEDSPU = @EMBEDSPU@ |
3258
e786366ea23b
This doesn't actually build on other platforms, I'll have to check with Martin
Sam Lantinga <slouken@libsdl.org>
parents:
3257
diff
changeset
|
44 #include $(srcdir)/src/video/ps3/spulibs/Makefile |
3257
94fb40a4a9a7
Merged Martin's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3180
diff
changeset
|
45 |
3344 | 46 DIST = acinclude autogen.sh Borland.html Borland.zip BUGS build-scripts configure configure.in COPYING CREDITS docs docs.html include INSTALL Makefile.minimal Makefile.in README* sdl-config.in sdl.m4 sdl.pc.in SDL.spec SDL.spec.in src test TODO VisualC.html VisualC VisualCE Watcom-Win32.zip WhatsNew Xcode |
1362 | 47 |
3263
924b486541dc
Removing old CD-ROM header reference
Sam Lantinga <slouken@libsdl.org>
parents:
3258
diff
changeset
|
48 HDRS = SDL.h SDL_atomic.h SDL_audio.h SDL_compat.h SDL_cpuinfo.h SDL_endian.h SDL_error.h SDL_events.h SDL_haptic.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_opengles.h SDL_pixels.h SDL_platform.h SDL_power.h SDL_quit.h SDL_rect.h SDL_revision.h SDL_rwops.h SDL_scancode.h SDL_stdinc.h SDL_surface.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 |
2122
b15ffacb66d3
Don't install the extra SDL config headers or SDL_copying.h
Sam Lantinga <slouken@libsdl.org>
parents:
2083
diff
changeset
|
49 |
1362 | 50 LT_AGE = @LT_AGE@ |
51 LT_CURRENT = @LT_CURRENT@ | |
52 LT_RELEASE = @LT_RELEASE@ | |
53 LT_REVISION = @LT_REVISION@ | |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
54 LT_LDFLAGS = -no-undefined -rpath $(DESTDIR)$(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) |
1362 | 55 |
3311 | 56 all: $(srcdir)/configure Makefile $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) |
1622 | 57 |
58 $(srcdir)/configure: $(srcdir)/configure.in | |
59 @echo "Warning, configure.in is out of date" | |
60 #(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
|
61 @sleep 3 |
1362 | 62 |
63 Makefile: $(srcdir)/Makefile.in | |
64 $(SHELL) config.status $@ | |
65 | |
66 $(objects): | |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
67 $(SHELL) $(auxdir)/mkinstalldirs $@ |
1362 | 68 |
3311 | 69 # To make sure parallel builds will not fail |
70 $(srcdir)/include/SDL_revision.h: update-revision | |
71 | |
2982
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
2713
diff
changeset
|
72 update-revision: |
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
2713
diff
changeset
|
73 $(SHELL) $(auxdir)/updaterev.sh |
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
2713
diff
changeset
|
74 |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
75 .PHONY: all update-revision 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 |
1362 | 76 |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
77 -include $(OBJECTS:.lo=.d) |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
78 @DEPENDS@ |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
79 @VERSION_DEPENDS@ |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
80 @SDLMAIN_DEPENDS@ |
1362 | 81 |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
82 $(objects)/$(TARGET): $(OBJECTS) $(VERSION_OBJECTS) |
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
83 $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(VERSION_OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS) |
1362 | 84 |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
85 $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS) |
1419
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
86 $(AR) cru $@ $(SDLMAIN_OBJECTS) |
36a5068bf7df
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1414
diff
changeset
|
87 $(RANLIB) $@ |
1397
b189a73aa335
Added rules to build libSDLmain.a
Sam Lantinga <slouken@libsdl.org>
parents:
1394
diff
changeset
|
88 |
1764
4b2f27334dce
The install target depends on the libraries being built
Sam Lantinga <slouken@libsdl.org>
parents:
1750
diff
changeset
|
89 install: all install-bin install-hdrs install-lib install-data install-man |
1362 | 90 install-bin: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
91 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(bindir) |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
92 $(INSTALL) -m 755 sdl-config $(DESTDIR)$(bindir)/sdl-config |
1362 | 93 install-hdrs: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
94 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(includedir)/SDL |
2122
b15ffacb66d3
Don't install the extra SDL config headers or SDL_copying.h
Sam Lantinga <slouken@libsdl.org>
parents:
2083
diff
changeset
|
95 for file in $(HDRS); do \ |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
96 $(INSTALL) -m 644 $(srcdir)/include/$$file $(DESTDIR)$(includedir)/SDL/$$file; \ |
1362 | 97 done |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
98 $(INSTALL) -m 644 include/SDL_config.h $(DESTDIR)$(includedir)/SDL/SDL_config.h |
2151 | 99 install-lib: $(objects) $(objects)/$(TARGET) $(objects)/$(SDLMAIN_TARGET) |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
100 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir) |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
101 $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(DESTDIR)$(libdir)/$(TARGET) |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
102 $(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
|
103 $(RANLIB) $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) |
1362 | 104 install-data: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
105 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(datadir)/aclocal |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
106 $(INSTALL) -m 644 $(srcdir)/sdl.m4 $(DESTDIR)$(datadir)/aclocal/sdl.m4 |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
107 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
108 $(INSTALL) -m 644 sdl.pc $(DESTDIR)$(libdir)/pkgconfig |
1362 | 109 install-man: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
110 $(SHELL) $(auxdir)/mkinstalldirs $(DESTDIR)$(mandir)/man3 |
1362 | 111 for src in $(srcdir)/docs/man3/*.3; do \ |
112 file=`echo $$src | sed -e 's|^.*/||'`; \ | |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
113 $(INSTALL) -m 644 $$src $(DESTDIR)$(mandir)/man3/$$file; \ |
1362 | 114 done |
115 | |
1603 | 116 uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man |
1362 | 117 uninstall-bin: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
118 rm -f $(DESTDIR)$(bindir)/sdl-config |
1362 | 119 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
|
120 for file in $(HDRS); do \ |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
121 rm -f $(DESTDIR)$(includedir)/SDL/$$file; \ |
1362 | 122 done |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
123 rm -f $(DESTDIR)$(includedir)/SDL/SDL_config.h |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
124 -rmdir $(DESTDIR)$(includedir)/SDL |
1362 | 125 uninstall-lib: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
126 $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(TARGET) |
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
127 rm -f $(DESTDIR)$(libdir)/$(SDLMAIN_TARGET) |
1362 | 128 uninstall-data: |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
129 rm -f $(DESTDIR)$(datadir)/aclocal/sdl.m4 |
1362 | 130 uninstall-man: |
131 for src in $(srcdir)/docs/man3/*.3; do \ | |
132 file=`echo $$src | sed -e 's|^.*/||'`; \ | |
2156
cd041eb7eb4a
Fixed configure warning about datarootdir
Sam Lantinga <slouken@libsdl.org>
parents:
2151
diff
changeset
|
133 rm -f $(DESTDIR)$(mandir)/man3/$$file; \ |
1362 | 134 done |
135 | |
136 clean: | |
137 rm -rf $(objects) | |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1362
diff
changeset
|
138 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi |
1362 | 139 |
140 distclean: clean | |
141 rm -f Makefile include/SDL_config.h sdl-config | |
142 rm -f SDL.qpg | |
3334
61ea9005fddf
Use gcc's built-in dependency generation, thanks to Adam Strzelecki
Sam Lantinga <slouken@libsdl.org>
parents:
3311
diff
changeset
|
143 rm -f config.status config.cache config.log libtool |
1362 | 144 rm -rf $(srcdir)/autom4te* |
1603 | 145 find $(srcdir) \( \ |
146 -name '*~' -o \ | |
147 -name '*.bak' -o \ | |
148 -name '*.old' -o \ | |
149 -name '*.rej' -o \ | |
150 -name '*.orig' -o \ | |
151 -name '.#*' \) \ | |
1362 | 152 -exec rm -f {} \; |
1603 | 153 cp $(srcdir)/include/SDL_config.h.default $(srcdir)/include/SDL_config.h |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1362
diff
changeset
|
154 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi |
1362 | 155 |
156 dist $(distfile): | |
1391
7dc446173e37
Blargle-fnargle dependencies and build rules
Sam Lantinga <slouken@libsdl.org>
parents:
1390
diff
changeset
|
157 $(SHELL) $(auxdir)/mkinstalldirs $(distdir) |
1362 | 158 tar cf - $(DIST) | (cd $(distdir); tar xf -) |
1603 | 159 cp $(distdir)/include/SDL_config.h.default $(distdir)/include/SDL_config.h |
2982
b64c1d23039b
Make the current revision number available
Sam Lantinga <slouken@libsdl.org>
parents:
2713
diff
changeset
|
160 $(SHELL) $(distdir)/build-scripts/updaterev.sh |
1651
0a9be1057095
subversion conversion complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1634
diff
changeset
|
161 rm -rf `find $(distdir) -name .svn` |
1846
699eaff87cbb
Whoops, clean files in the dist directory
Sam Lantinga <slouken@libsdl.org>
parents:
1845
diff
changeset
|
162 find $(distdir) \( \ |
1845 | 163 -name '*~' -o \ |
164 -name '*.bak' -o \ | |
165 -name '*.old' -o \ | |
166 -name '*.rej' -o \ | |
167 -name '*.orig' -o \ | |
168 -name '.#*' \) \ | |
169 -exec rm -f {} \; | |
1848
3c5eed71a332
Clean out the tests before creating distribution archive
Sam Lantinga <slouken@libsdl.org>
parents:
1846
diff
changeset
|
170 if test -f $(distdir)/test/Makefile; then (cd $(distdir)/test && make distclean); fi |
1362 | 171 tar cvf - $(distdir) | gzip --best >$(distfile) |
172 rm -rf $(distdir) | |
173 | |
174 rpm: $(distfile) | |
175 rpmbuild -ta $? | |
1424
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
176 |
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
|
177 # 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
|
178 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
|
179 @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
|
180 @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
|
181 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
|
182 -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
|
183 -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
|
184 -name '*.cc' \) \ |
2220
4d2d0548f5b2
Don't run indent on the Xcode templates
Sam Lantinga <slouken@libsdl.org>
parents:
2207
diff
changeset
|
185 -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
|
186 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
|
187 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
|
188 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
|
189 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
|
190 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
|
191 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
|
192 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
|
193 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
|
194 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
|
195 |
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
|
196 # 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
|
197 commit: 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
|
198 svn commit |
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
|
199 |
1651
0a9be1057095
subversion conversion complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1634
diff
changeset
|
200 # Create a SVN snapshot that people can run update on |
1424
7a610f25c12f
Updated MacOS Classic MPW build
Sam Lantinga <slouken@libsdl.org>
parents:
1419
diff
changeset
|
201 snapshot: |
3027 | 202 $(SHELL) $(auxdir)/snapshot.sh |