Mercurial > sdl-ios-xcode
comparison Makefile.in @ 2122:b15ffacb66d3
Don't install the extra SDL config headers or SDL_copying.h
Fixes Bugzilla #361.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 15 Jun 2007 05:43:05 +0000 |
parents | db8ec0cfe6b8 |
children | 9c9c49b18693 |
comparison
equal
deleted
inserted
replaced
2121:85ed90a755fa | 2122:b15ffacb66d3 |
---|---|
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 docs docs.html EpocBuildFiles.zip include INSTALL Makefile.dc Makefile.minimal Makefile.in README* sdl-config.in sdl.m4 sdl.pc.in 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 | 41 DIST = acinclude.m4 autogen.sh Borland.html Borland.zip BUGS build-scripts configure configure.in COPYING CREDITS docs docs.html EpocBuildFiles.zip include INSTALL Makefile.dc Makefile.minimal Makefile.in README* sdl-config.in sdl.m4 sdl.pc.in 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 HDRS = SDL.h SDL_audio.h SDL_cdrom.h SDL_compat.h SDL_cpuinfo.h SDL_endian.h SDL_error.h SDL_events.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_pixels.h SDL_platform.h SDL_quit.h SDL_rwops.h SDL_stdinc.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 | |
44 | |
43 LT_AGE = @LT_AGE@ | 45 LT_AGE = @LT_AGE@ |
44 LT_CURRENT = @LT_CURRENT@ | 46 LT_CURRENT = @LT_CURRENT@ |
45 LT_RELEASE = @LT_RELEASE@ | 47 LT_RELEASE = @LT_RELEASE@ |
46 LT_REVISION = @LT_REVISION@ | 48 LT_REVISION = @LT_REVISION@ |
47 LT_LDFLAGS = -no-undefined -rpath $(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) | 49 LT_LDFLAGS = -no-undefined -rpath $(libdir) -release $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) |
82 install-bin: | 84 install-bin: |
83 $(SHELL) $(auxdir)/mkinstalldirs $(bindir) | 85 $(SHELL) $(auxdir)/mkinstalldirs $(bindir) |
84 $(INSTALL) -m 755 sdl-config $(bindir)/sdl-config | 86 $(INSTALL) -m 755 sdl-config $(bindir)/sdl-config |
85 install-hdrs: | 87 install-hdrs: |
86 $(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL | 88 $(SHELL) $(auxdir)/mkinstalldirs $(includedir)/SDL |
87 for src in $(srcdir)/include/*.h; do \ | 89 for file in $(HDRS); do \ |
88 file=`echo $$src | sed -e 's|^.*/||'`; \ | 90 $(INSTALL) -m 644 $(srcdir)/include/$$file $(includedir)/SDL/$$file; \ |
89 $(INSTALL) -m 644 $$src $(includedir)/SDL/$$file; \ | |
90 done | 91 done |
91 $(INSTALL) -m 644 include/SDL_config.h $(includedir)/SDL/SDL_config.h | 92 $(INSTALL) -m 644 include/SDL_config.h $(includedir)/SDL/SDL_config.h |
92 install-lib: | 93 install-lib: |
93 $(SHELL) $(auxdir)/mkinstalldirs $(libdir) | 94 $(SHELL) $(auxdir)/mkinstalldirs $(libdir) |
94 $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(libdir)/$(TARGET) | 95 $(LIBTOOL) --mode=install $(INSTALL) $(objects)/$(TARGET) $(libdir)/$(TARGET) |
108 | 109 |
109 uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man | 110 uninstall: uninstall-bin uninstall-hdrs uninstall-lib uninstall-data uninstall-man |
110 uninstall-bin: | 111 uninstall-bin: |
111 rm -f $(bindir)/sdl-config | 112 rm -f $(bindir)/sdl-config |
112 uninstall-hdrs: | 113 uninstall-hdrs: |
113 for src in $(srcdir)/include/*.h; do \ | 114 for file in $(HDRS); do \ |
114 file=`echo $$src | sed -e 's|^.*/||'`; \ | |
115 rm -f $(includedir)/SDL/$$file; \ | 115 rm -f $(includedir)/SDL/$$file; \ |
116 done | 116 done |
117 rm -f $(includedir)/SDL/SDL_config.h | 117 rm -f $(includedir)/SDL/SDL_config.h |
118 -rmdir $(includedir)/SDL | 118 -rmdir $(includedir)/SDL |
119 uninstall-lib: | 119 uninstall-lib: |