File: Makefile.am

package info (click to toggle)
elk 3.99.7-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, squeeze
  • size: 5,068 kB
  • ctags: 3,303
  • sloc: ansic: 22,248; sh: 8,936; lisp: 6,208; makefile: 851; awk: 154; cpp: 92
file content (20 lines) | stat: -rw-r--r-- 531 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

CLEANFILES = $(allstamps) mytest.scm tmp1 tmp2 tmp3

allstamps = stamp-r4rs stamp-gc

if NATIVE_BUILD
all-local: $(allstamps)
endif

stamp-r4rs: $(top_builddir)/src/elk
	rm -f $@ mytest.scm
	sed -e 's/r4rstest/mytest/g' < $(srcdir)/r4rstest.scm > mytest.scm
	echo '(test-cont) (test-sc4) (test-delay)' >> mytest.scm
	-$(top_builddir)/src/elk -p .:$(top_srcdir)/scm -l mytest.scm
	rm -f mytest.scm tmp1 tmp2 tmp3
	printf "" > $@

stamp-gc: $(top_builddir)/src/elk
	-$(top_builddir)/src/elk -p .:$(top_srcdir)/scm -l gc-stress.scm