File: Makefile-subdir

package info (click to toggle)
acl2 8.6%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 1,111,420 kB
  • sloc: lisp: 17,818,294; java: 125,359; python: 28,122; javascript: 23,458; cpp: 18,851; ansic: 11,569; perl: 7,678; xml: 5,591; sh: 3,976; makefile: 3,833; ruby: 2,633; yacc: 1,126; ml: 763; awk: 295; csh: 233; lex: 197; php: 178; tcl: 49; asm: 23; haskell: 17
file content (44 lines) | stat: -rw-r--r-- 622 bytes parent folder | download | duplicates (10)
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
BASE = /home/hbl/currentwork
SRC  = $(BASE)/src
ACL2 = $(BASE)/bin/acl2/acl2-sources/saved_acl2

PYTHON = python

include $(SRC)/Makefile-generic


.SUFFIXES: .cert .lisp

.PHONY: X

%.cert: %.lisp X
	@$(PYTHON) $(BASE)/bin/acl2_make_wrap.py -b $(SRC) $@


clean: 	
	rm -f *.cert
	rm -f *.o
	rm -f *.h
	rm -f *.c
	rm -f *.lib
	rm -f *.fasl
	rm -f *.fas
	rm -f *.sbin
	rm -f *.lbin
	rm -f *.pfsl
	rm -f *.cfsl
	rm -f *.bin
	rm -f *.sparcf
	rm -f *.ufsl
	rm -f *.dfsl
	rm -f *.x86f
	rm -f *.axpf
	rm -f *.out
	rm -f *.date
	rm -f *.log
	rm -f TMP.*
	rm -f TMP1.*
	rm -f workxxx*

dependencies:
	@cd $(SRC); make dependencies