File: Makefile.am

package info (click to toggle)
gltron 0.70final-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,752 kB
  • ctags: 4,793
  • sloc: ansic: 19,182; sh: 3,220; cpp: 973; makefile: 269
file content (38 lines) | stat: -rw-r--r-- 881 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
SUBDIRS = lua nebu src art data music scripts

bin_PROGRAMS = gltron

gltron_SOURCES = @top_srcdir@/src/gltron.c

gltron_LINK = $(CXX) -o $@
gltron_LDADD = \
	src/game/libgame.a \
	src/input/libinput.a \
	src/audio/libaudio.a \
	src/video/libvideo.a \
	src/configuration/libconfiguration.a \
	src/base/libbase.a \
	src/filesystem/libfilesystem.a \
	nebu/input/libinput.a \
	nebu/audio/libaudio.a \
	nebu/video/libvideo.a \
	nebu/scripting/libscripting.a \
	nebu/filesystem/libfilesystem.a \
	nebu/base/libbase.a \
	lua/src/liblua.a \
	lua/src/lib/liblualib.a

#gltron_LDFLAGS = -static

AM_CFLAGS = \
	-I@top_srcdir@/src/include \
	-I@top_srcdir@/lua/include \
	-I@top_srcdir@/nebu/include

AM_CXXFLAGS = \
	-I@top_srcdir@/src/include \
	-I@top_srcdir@/lua/include \
	-I@top_srcdir@/nebu/include

tags:
	etags `find -name '*.c' -or -name '*.cpp' -or -name '*.h' -or -name '*.lua'`