summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorSam Lantinga <slouken@libsdl.org>2012-01-19 01:55:51 -0500
committerSam Lantinga <slouken@libsdl.org>2012-01-19 01:55:51 -0500
commit9853ab62c8b53858497efadb95b1cbf04df1b2a0 (patch)
treea68d6a0466d6ed83d7ec574b4604800a9ef0ddf3 /Makefile.in
parent9e37906060911d0b9ceb0d2b58b2f902108070e9 (diff)
Switched back to configure generating SDL_config.h
It was very confusing to have configure generate an SDL_config.h and then not have it be used when building on Mac OS X or Windows. I'll just have to remember to use SDL_config_windows.h when building official releases that are supposed to be ABI compatible with Visual Studio.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 2 insertions, 9 deletions
diff --git a/Makefile.in b/Makefile.in
index a8313a519d..43bab3dda2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -46,13 +46,6 @@ HDRS = \
SDL_audio.h \
SDL_blendmode.h \
SDL_clipboard.h \
- SDL_config.h \
- SDL_config_android.h \
- SDL_config_iphoneos.h \
- SDL_config_macosx.h \
- SDL_config_minimal.h \
- SDL_config_nintendods.h \
- SDL_config_windows.h \
SDL_compat.h \
SDL_cpuinfo.h \
SDL_endian.h \
@@ -137,7 +130,7 @@ install-hdrs: update-revision
for file in $(HDRS); do \
$(INSTALL) -m 644 $(srcdir)/include/$$file $(DESTDIR)$(includedir)/SDL/$$file; \
done
- $(INSTALL) -m 644 include/SDL_config_generated.h $(DESTDIR)$(includedir)/SDL/SDL_config_generated.h
+ $(INSTALL) -m 644 include/SDL_config.h $(DESTDIR)$(includedir)/SDL/SDL_config.h
if test -f include/SDL_revision.h; then \
$(INSTALL) -m 644 include/SDL_revision.h $(DESTDIR)$(includedir)/SDL/SDL_revision.h; \
else \
@@ -162,7 +155,7 @@ uninstall-hdrs:
for file in $(HDRS); do \
rm -f $(DESTDIR)$(includedir)/SDL/$$file; \
done
- rm -f $(DESTDIR)$(includedir)/SDL/SDL_config_generated.h
+ rm -f $(DESTDIR)$(includedir)/SDL/SDL_config.h
rm -f $(DESTDIR)$(includedir)/SDL/SDL_revision.h
-rmdir $(DESTDIR)$(includedir)/SDL
uninstall-lib: