-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.am
46 lines (43 loc) · 1.04 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
irvm_CFLAGS = -pedantic -Wall -std=gnu99
AM_YFLAGS = -d
AM_LFLAGS = -i
bin_PROGRAMS = irvm
irvm_SOURCES = irvm.c irvm.h \
checklir.c checklir.h \
consts.h \
context.c context.h \
decorate.c decorate.h \
destroy.c destroy.h \
error.c error.h \
execute.c execute.h \
id.c id.h \
mem.c mem.h \
primitives.c primitives.h \
irparser.y irlexer.l
irvm_LDADD = libccan.a
CLEANFILES=irlexer.c irparser.c irparser.h
noinst_LIBRARIES = libccan.a
libccan_a_SOURCES = \
ccan/build_assert/build_assert.h \
ccan/list/list.h \
ccan/list/list.c \
ccan/check_type/check_type.h \
ccan/container_of/container_of.h \
ccan/cast/cast.h \
ccan/str/str.h \
ccan/str/debug.c \
ccan/str/str_debug.h \
ccan/str/str.c \
ccan/typesafe_cb/typesafe_cb.h \
ccan/htable/htable.c \
ccan/htable/htable.h \
ccan/htable/htable_type.h \
ccan/opt/parse.c \
ccan/opt/opt.c \
ccan/opt/private.h \
ccan/opt/opt.h \
ccan/opt/usage.c \
ccan/opt/helpers.c \
ccan/compiler/compiler.h \
ccan/hash/hash.c \
ccan/hash/hash.h