source: trunk/src/Makefile.am @ 218

Last change on this file since 218 was 218, checked in by sam, 12 years ago

The Tile size can now be specified upon TileSet load. Add a sample
with the Monsterz tiles.

File size: 1.2 KB
Line 
1
2noinst_PROGRAMS = test-map editor
3
4noinst_LIBRARIES = libcommon.a
5
6libcommon_a_SOURCES = \
7    core.h matrix.h game.cpp game.h tiler.cpp tiler.h dict.cpp dict.h \
8    scene.cpp scene.h font.cpp font.h layer.cpp layer.h map.cpp map.h \
9    entity.cpp entity.h ticker.cpp ticker.h tileset.cpp tileset.h \
10    forge.cpp forge.h video.cpp video.h timer.cpp timer.h bitfield.h \
11    profiler.cpp profiler.h input.h input.cpp world.cpp world.h \
12    debugfps.cpp debugfps.h debugsprite.cpp debugsprite.h \
13    debugrecord.cpp debugrecord.h debugstats.cpp debugstats.h \
14    debugsphere.cpp debugsphere.h debugboard.cpp debugboard.h
15libcommon_a_CXXFLAGS = `pkg-config --cflags sdl gl SDL_image`
16
17test_map_SOURCES = test-map.cpp sdlinput.cpp sdlinput.h
18test_map_CXXFLAGS = `pkg-config --cflags sdl gl SDL_image` @PIPI_CFLAGS@
19test_map_LDADD = libcommon.a
20test_map_LDFLAGS = `pkg-config --libs sdl gl SDL_image` @PIPI_LIBS@
21
22editor_SOURCES = gtk/editor.cpp gtk/glmapview.cpp gtk/glmapview.h \
23                 mapviewer.cpp mapviewer.h
24editor_CXXFLAGS = `pkg-config --cflags sdl gl SDL_image gtk+-2.0 gtkgl-2.0`
25editor_LDADD = libcommon.a
26editor_LDFLAGS = `pkg-config --libs sdl gl gtk+-2.0 gtkgl-2.0 SDL_image`
27EXTRA_DIST = gtk/editor.xml
28
Note: See TracBrowser for help on using the repository browser.