Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 3d6840a7cb40547894009d77f47b6b86585e70ec (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
METASOURCES = AUTO
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/game

noinst_LTLIBRARIES = libbase.la

noinst_HEADERS = \
	cargo.h \
	cargopod.h \
	game.h \
	faction.h \
	jumppoint.h \
	navpoint.h \
	npc.h \
	planet.h \
	racetrack.h \
	savegame.h \
	ship.h \
	shipmodel.h \
	spacemine.h \
	star.h \
	station.h \
	template.h \
	weapon.h

libbase_la_SOURCES = \
	cargo.cc \
	cargopod.cc \
	faction.cc \
	game.cc \
	jumppoint.cc \
	navpoint.cc \
	npc.cc \
	planet.cc \
	racetrack.cc \
	savegame.cc \
	ship.cc \
	shipmodel.cc \
	spacemine.cc \
	star.cc \
	station.cc \
	template.cc \
	weapon.cc

libbase_la_LDFLAGS = -avoid-version -no-undefined

libbase_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