From e20495c02d5b3c24cf77f88be99e4e684fc4a368 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tobias=20Gl=C3=A4=C3=9Fer?= Date: Thu, 22 Jul 2004 19:04:45 +0000 Subject: [PATCH] Headers should now be correctly handled and get installed in $(includedir)/supertux/ . SVN-Revision: 1617 --- lib/Makefile.am | 81 +++++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 56 insertions(+), 25 deletions(-) diff --git a/lib/Makefile.am b/lib/Makefile.am index a72e6862e..04d2fe36a 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,32 +1,63 @@ INCLUDES = METASOURCES = AUTO lib_LTLIBRARIES = libsupertux.la -libsupertux_la_SOURCES =app/defines.h \ +libsupertux_la_SOURCES =app/globals.cpp \ + app/setup.cpp \ + audio/musicref.cpp \ + audio/sound.cpp \ + audio/sound_manager.cpp \ + gui/button.cpp \ + gui/menu.cpp \ + gui/mousecursor.cpp \ + math/physic.cpp \ + math/vector.cpp \ + special/game_object.cpp \ + special/moving_object.cpp \ + special/sprite.cpp \ + special/sprite_manager.cpp \ + special/stringlist.cpp \ + special/timer.cpp \ + utils/configfile.cpp \ + utils/lispreader.cpp \ + utils/lispwriter.cpp \ + video/drawing_context.cpp \ + video/font.cpp \ + video/screen.cpp \ + video/surface.cpp +libsupertuxdir = $(includedir)/supertux +libsupertuxappdir = $(libsupertuxdir)/app +libsupertuxaudiodir = $(libsupertuxdir)/audio +libsupertuxguidir = $(libsupertuxdir)/gui +libsupertuxmathdir = $(libsupertuxdir)/math +libsupertuxspecialdir = $(libsupertuxdir)/special +libsupertuxutilsdir = $(libsupertuxdir)/utils +libsupertuxvideodir = $(libsupertuxdir)/video +libsupertuxapp_HEADERS =app/defines.h \ + app/setup.h \ app/gettext.h \ - app/globals.h app/globals.cpp \ - app/setup.h app/setup.cpp \ - audio/musicref.h audio/musicref.cpp \ - audio/sound.h audio/sound.cpp \ - audio/sound_manager.h audio/sound_manager.cpp \ - gui/button.h gui/button.cpp \ - gui/menu.h gui/menu.cpp \ - gui/mousecursor.cpp gui/mousecursor.h \ - math/physic.h math/physic.cpp \ - math/vector.h math/vector.cpp \ - special/base.h \ - special/game_object.h special/game_object.cpp \ - special/moving_object.h special/moving_object.cpp \ - special/sprite.h special/sprite.cpp \ - special/sprite_manager.h special/sprite_manager.cpp \ - special/stringlist.h special/stringlist.cpp \ - special/timer.h special/timer.cpp \ - utils/configfile.h utils/configfile.cpp \ + app/globals.h +libsupertuxaudio_HEADERS =audio/musicref.h \ + audio/sound.h \ + audio/sound_manager.h +libsupertuxgui_HEADERS =gui/button.h \ + gui/menu.h \ + gui/mousecursor.h +libsupertuxmath_HEADERS =math/physic.h \ + math/vector.h +libsupertuxspecial_HEADERS =special/base.h \ + special/game_object.h \ + special/moving_object.h \ + special/sprite.h \ + special/sprite_manager.h \ + special/stringlist.h \ + special/timer.h +libsupertuxutils_HEADERS =utils/configfile.h \ utils/exceptions.h \ - utils/lispreader.h utils/lispreader.cpp \ - utils/lispwriter.h utils/lispwriter.cpp \ - video/drawing_context.h video/drawing_context.cpp \ - video/font.h video/font.cpp \ - video/screen.h video/screen.cpp \ - video/surface.h video/surface.cpp + utils/lispreader.h \ + utils/lispwriter.h +libsupertuxvideo_HEADERS =video/drawing_context.h \ + video/font.h \ + video/screen.h \ + video/surface.h libsupertux_la_LDFLAGS = -module -- 2.11.0