comparison Makefile.in @ 1659:14717b52abc0 SDL-1.3

Merge trunk-1.3-3
author Sam Lantinga <slouken@libsdl.org>
date Wed, 17 May 2006 08:18:28 +0000
parents 0a9be1057095
children 782fd950bd46
comparison
equal deleted inserted replaced
1658:e49147870aac 1659:14717b52abc0
36 36
37 SDLMAIN_TARGET = libSDLmain.a 37 SDLMAIN_TARGET = libSDLmain.a
38 SDLMAIN_SOURCES = @SDLMAIN_SOURCES@ 38 SDLMAIN_SOURCES = @SDLMAIN_SOURCES@
39 SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@ 39 SDLMAIN_OBJECTS = @SDLMAIN_OBJECTS@
40 40
41 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.minimal Makefile.in MPWmake.sea.bin 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 Xcode.tar.gz 41 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.minimal Makefile.in MPWmake.sea.bin 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 Watcom-Win32.zip WhatsNew Xcode.tar.gz
42 42
43 LT_AGE = @LT_AGE@ 43 LT_AGE = @LT_AGE@
44 LT_CURRENT = @LT_CURRENT@ 44 LT_CURRENT = @LT_CURRENT@
45 LT_RELEASE = @LT_RELEASE@ 45 LT_RELEASE = @LT_RELEASE@
46 LT_REVISION = @LT_REVISION@ 46 LT_REVISION = @LT_REVISION@
76 76
77 $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS) 77 $(objects)/$(SDLMAIN_TARGET): $(SDLMAIN_OBJECTS)
78 $(AR) cru $@ $(SDLMAIN_OBJECTS) 78 $(AR) cru $@ $(SDLMAIN_OBJECTS)
79 $(RANLIB) $@ 79 $(RANLIB) $@
80 80
81 install: install-bin install-hdrs install-lib install-data install-man 81 install: all install-bin install-hdrs install-lib install-data install-man
82 install-bin: 82 install-bin:
83 $(SHELL) $(auxdir)/mkinstalldirs $(bindir) 83 $(SHELL) $(auxdir)/mkinstalldirs $(bindir)
84 $(INSTALL) -m 755 sdl-config $(bindir)/sdl-config 84 $(INSTALL) -m 755 sdl-config $(bindir)/sdl-config
85 install-hdrs: 85 install-hdrs:
86 $(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL 86 $(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL
129 rm -rf $(objects) 129 rm -rf $(objects)
130 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi 130 if test -f test/Makefile; then (cd test; $(MAKE) $@); fi
131 131
132 distclean: clean 132 distclean: clean
133 rm -f Makefile include/SDL_config.h sdl-config 133 rm -f Makefile include/SDL_config.h sdl-config
134 rm -f include/SDL_config.h sdl-config
135 rm -f SDL.qpg 134 rm -f SDL.qpg
136 rm -f config.status config.cache config.log libtool $(depend) 135 rm -f config.status config.cache config.log libtool $(depend)
137 rm -rf $(srcdir)/autom4te* 136 rm -rf $(srcdir)/autom4te*
138 find $(srcdir) \( \ 137 find $(srcdir) \( \
139 -name '*~' -o \ 138 -name '*~' -o \
149 dist $(distfile): 148 dist $(distfile):
150 $(SHELL) $(auxdir)/mkinstalldirs $(distdir) 149 $(SHELL) $(auxdir)/mkinstalldirs $(distdir)
151 tar cf - $(DIST) | (cd $(distdir); tar xf -) 150 tar cf - $(DIST) | (cd $(distdir); tar xf -)
152 cp $(distdir)/include/SDL_config.h.default $(distdir)/include/SDL_config.h 151 cp $(distdir)/include/SDL_config.h.default $(distdir)/include/SDL_config.h
153 rm -rf `find $(distdir) -name .svn` 152 rm -rf `find $(distdir) -name .svn`
154 rm -f `find $(distdir) -name '.#*'` 153 find $(distdir) \( \
155 rmdir `find $(distdir) -type d -empty` 154 -name '*~' -o \
155 -name '*.bak' -o \
156 -name '*.old' -o \
157 -name '*.rej' -o \
158 -name '*.orig' -o \
159 -name '.#*' \) \
160 -exec rm -f {} \;
161 if test -f $(distdir)/test/Makefile; then (cd $(distdir)/test && make distclean); fi
156 tar cvf - $(distdir) | gzip --best >$(distfile) 162 tar cvf - $(distdir) | gzip --best >$(distfile)
157 rm -rf $(distdir) 163 rm -rf $(distdir)
158 164
159 rpm: $(distfile) 165 rpm: $(distfile)
160 rpmbuild -ta $? 166 rpmbuild -ta $?