File: Makefile.am

package info (click to toggle)
elk 3.99.8-2.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,004 kB
  • ctags: 3,435
  • sloc: ansic: 22,294; lisp: 6,208; makefile: 821; sh: 171; awk: 154; cpp: 92
file content (77 lines) | stat: -rw-r--r-- 1,142 bytes parent folder | download | duplicates (6)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
NULL = 

lib_LTLIBRARIES = libelk.la
libelk_la_CFLAGS = @ELK_CFLAGS@ -I/usr/include/libelf
libelk_la_LDFLAGS = @ELK_LDFLAGS@
libelk_la_LIBADD = @ELK_LIBS@
libelk_la_SOURCES = \
	autoload.c \
	bignum.c \
	bool.c \
	char.c \
	cont.c \
	cstring.c \
	debug.c \
	dump.c \
	env.c \
	error.c \
	exception.c \
	feature.c \
	heap.c \
	io.c \
	libelk.c \
	list.c \
	load.c \
	loadlib.c \
	malloc.c \
	math.c \
	onfork.c \
	prim.c \
	print.c \
	proc.c \
	promise.c \
	read.c \
	special.c \
	stab.c \
	$(stab_elf_c) \
	$(stab_vanilla_c) \
	stkmem.c \
	string.c \
	symbol.c \
	terminate.c \
	type.c \
	vector.c \
	$(NULL)

if HAVE_LIBELF
stab_elf_c = stab-elf.c
else
stab_vanilla_c = stab-vanilla.c
endif

EXTRA_DIST = \
	dump-ecoff.c \
	dump-elf.c \
	dump-hp9k.c \
	dump-vanilla.c \
	heap-gen.c \
	heap-sc.c \
	stab-bsd.c \
	stab-coff.c \
	stab-convex.c \
	stab-ecoff.c \
	stab-hp9k300.c \
	stab-hp9k800.c \
	stab-macho.c \
	$(NULL)

bin_PROGRAMS = elk
elk_LDADD = $(top_builddir)/src/libelk.la
elk_SOURCES = main.c

install-exec-hook:
	rm -f "$(DESTDIR)$(bindir)/scheme-elk"
	ln -s elk "$(DESTDIR)$(bindir)/scheme-elk"

echo-sources: ; echo $(SOURCES)