1# $Id: Makefile.am,v 1.7 2012/07/08 02:57:14 sarrazip Exp $ 2# Makefile.am 3 4lib_LTLIBRARIES = libflatzebra-0.1.la 5 6libflatzebra_0_1_la_LDFLAGS = -version-info 2:0:0 -no-undefined 7 8libflatzebra_0_1_la_SOURCES = \ 9 Couple.h \ 10 RCouple.cpp \ 11 RCouple.h \ 12 GameEngine.cpp \ 13 GameEngine.h \ 14 PixmapArray.cpp \ 15 PixmapArray.h \ 16 PixmapLoadError.cpp \ 17 PixmapLoadError.h \ 18 Sprite.cpp \ 19 Sprite.h \ 20 RSprite.cpp \ 21 RSprite.h \ 22 SoundMixer.cpp \ 23 SoundMixer.h \ 24 Joystick.cpp \ 25 Joystick.h \ 26 KeyState.h \ 27 font_13x7.xpm 28 29libflatzebra_0_1_la_CXXFLAGS = \ 30 $(SDL_CFLAGS) \ 31 -I$(top_srcdir)/src 32 33libflatzebra_0_1_la_LIBADD = \ 34 $(SDL_LIBS) 35 36pkgincludedir = $(includedir)/$(PACKAGE)-$(API)/$(PACKAGE) 37pkginclude_HEADERS = \ 38 Couple.h \ 39 RCouple.h \ 40 GameEngine.h \ 41 PixmapArray.h \ 42 PixmapLoadError.h \ 43 Sprite.h \ 44 RSprite.h \ 45 SoundMixer.h \ 46 Joystick.h \ 47 KeyState.h 48 49MAINTAINERCLEANFILES = Makefile.in 50