This repository has been archived by the owner on Oct 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile.am
42 lines (34 loc) · 1.52 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
AM_CFLAGS=-Wall -Wextra -pedantic -std=c11 -I./src -I./src/core \
-I./src/extra -I./include
lib_LTLIBRARIES=libdogma.la
libdogma_ladir=.
libdogma_la_SOURCES=src/core/dogma.c include/dogma.h \
src/core/dogma_internal.c src/core/dogma_internal.h \
src/core/tables.c src/core/tables.h src/core/eval.c \
src/core/eval.h src/core/modifier.c src/core/modifier.h \
src/core/attribute.c src/core/attribute.h src/core/fleet.c \
src/core/fleet.h src/extra/extra.c src/extra/capacitor.c \
src/libdogma.sym src/operands.h src/tables-data.h test/test.h \
tools/bootstrap_from_json
libdogma_la_LDFLAGS=-export-symbols src/libdogma.sym -version-info 2:0:2
include_HEADERS=include/dogma.h include/dogma-names.h \
include/dogma-extra.h
bin_PROGRAMS=libdogmactl
libdogmactl_SOURCES=src/ctl/main.c
check_PROGRAMS=test/trivial test/basic-attributes \
test/basic-skill-levels test/basic-charges test/basic-fleet \
test/basic-area test/basic-propulsion test/stacking-penalties \
test/ancillary-modules test/drones test/implants \
test/projected-effects test/projected-stacking \
test/fleet-stacking test/self-on-self test/extra-misc \
test/extra-capacitor test/extra-capacitor-remote \
test/extra-side-effects test/bug-zero-powergrid \
test/bug-drones-segfault \
test/bug-capacitor-projected-0percentstable \
test/tactical-destroyer-modes test/missile-module \
test/bruteforce
LDADD=libdogma.la
TESTS=$(check_PROGRAMS)
pkgconfigdir=$(libdir)/pkgconfig
pkgconfig_DATA = libdogma.pc
EXTRA_DIST = README.md test/bruteforce-data.h