-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
53 lines (48 loc) · 1.21 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
45
46
47
48
49
50
51
52
53
AM_CFLAGS = -Wall -Werror -Wextra -g -std=c99 -I$(srcdir)/src -O0 -g -D_DEFAULT_SOURCE
AM_YFLAGS = --report=state -d
bin_PROGRAMS = a2c
a2c_SOURCES = src/lexer.c \
src/parser.c \
src/type.c \
src/type_table.c \
src/get_line.c \
src/funtable.c \
src/var_table.c \
src/typecheck.c \
src/codegen.c \
src/a2c.c \
src/error.c \
src/stdlibalgo.c
include_HEADERS = src/standard_lib/standard_lib.h
check_PROGRAMS = tests/hashtable tests/list
test_list_source= tests/list.c
TESTS = tests/parser.test \
tests/test-ifthen.test \
tests/list.test \
tests/parser-testfail.test \
tests/hashtable.test \
tests/test-typedecl.test \
tests/algolist.test \
tests/emptyalgolist.test \
tests/const-decl.test \
tests/fibo.test \
tests/all.test \
tests/switch.test \
tests/switchnodef.test \
tests/multiply.test \
tests/array.test \
tests/struct.test \
tests/product.test \
tests/typerec.test \
tests/ptr.test \
tests/globvalparam.test \
tests/allouer.test \
tests/intvect.test \
tests/pile.test \
tests/file.test \
tests/arbrebin.test \
tests/abn_taille.test \
tests/abn_complet.test \
tests/constarray.test \
tests/arrayfail.test \
tests/liberer.test