Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: c33369f9dce544f7f267527700209ebb6ec2eff7 (plain)
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
METASOURCES = AUTO
AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/game
SUBDIRS = base example intro

noinst_LTLIBRARIES = libgame.la
noinst_HEADERS = game.h

libgame_la_SOURCES = game.cc

libgame_la_LDFLAGS = -avoid-version -no-undefined

libgame_la_DEPENDENCIES = \
	$(top_builddir)/src/auxiliary/libauxiliary.la \
	$(top_builddir)/src/math/libmath.la \
	$(top_builddir)/src/sys/libsys.la \
	$(top_builddir)/src/filesystem/libfilesystem.la \
	$(top_builddir)/src/model/libmodel.la \
	$(top_builddir)/src/core/libcore.la \
	$(top_builddir)/src/game/base/libbase.la \
	$(top_builddir)/src/game/example/libexample.la \
	$(top_builddir)/src/game/intro/libintro.la

libgame_la_LIBADD = \
	$(top_builddir)/src/game/base/libbase.la \
	$(top_builddir)/src/game/example/libexample.la \
	$(top_builddir)/src/game/intro/libintro.la