-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
44 lines (35 loc) · 1.16 KB
/
Makefile.am
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
ACLOCAL_AMFLAGS = -I m4 --install
MAINTAINERCLEANFILES = Makefile.in \
aclocal.m4 ar-lib config.guess config.h.in config.h.in~ config.sub \
configure depcomp install-sh ltmain.sh missing \
m4/libtool.m4 m4/lt~obsolete.m4 m4/ltoptions.m4 m4/ltsugar.m4 \
m4/ltversion.m4 \
doc/html/* doc/latex/*
CLEANFILES = *.d *.so *_rdict.* *_rdict_* *.rootmap
# ========================================================
# CORE LIB
lib_LTLIBRARIES = libFMCore.la
libFMCore_la_SOURCES = src/core/Attributes.cpp \
src/core/MatchEngine.cpp \
src/core/Player.cpp \
src/core/PlayerAttributes .cpp \
src/core/PlayerInfo.cpp \
src/core/PlayerGenerator.cpp \
src/core/Role.cpp \
src/core/RoleHandler.cpp \
src/core/RandomGenerator.cpp \
src/core/Team.cpp
libFMCore_la_headers = src/core/Attributes.h \
src/core/MatchEngine.h \
src/core/Player.h \
src/core/PlayerAttributes .h \
src/core/PlayerInfo.h \
src/core/PlayerGenerator.h \
src/core/Role.cpp \
src/core/RoleHandler.cpp \
src/core/RandomGenerator.h \
src/core/Team.h
pkginclude_HEADERS = $(libFMCore_la_headers)
bin_PROGRAMS = FootballManager
FootballManager_SOURCES = src/main.cpp
FootballManager_LDADD = libFMCore.la