author | wenzelm |
Wed, 07 Sep 2011 21:41:36 +0200 | |
changeset 44806 | 3950842bb628 |
parent 43075 | 6fde0c323c15 |
child 45026 | 5c0b0d67f9b1 |
permissions | -rw-r--r-- |
33817 | 1 |
# |
2 |
# IsaMakefile for WWW_Find |
|
3 |
# |
|
4 |
# Provides static compile check for ML files only. |
|
5 |
||
33822 | 6 |
## targets |
33817 | 7 |
|
33822 | 8 |
default: Pure-WWW_Find |
9 |
images: |
|
10 |
test: Pure-WWW_Find |
|
11 |
all: images test |
|
42157 | 12 |
smlnj: all |
33822 | 13 |
|
14 |
||
15 |
## global settings |
|
16 |
||
17 |
SRC = $(ISABELLE_HOME)/src |
|
33817 | 18 |
OUT = $(ISABELLE_OUTPUT) |
19 |
LOG = $(OUT)/log |
|
20 |
||
33822 | 21 |
|
22 |
## Pure-WWW_Find |
|
23 |
||
33817 | 24 |
LOGFILE = $(LOG)/Pure-WWW_Find.gz |
25 |
||
33822 | 26 |
Pure-WWW_Find: Pure $(LOGFILE) |
33817 | 27 |
|
33822 | 28 |
Pure: |
29 |
@cd $(SRC)/Pure; $(ISABELLE_TOOL) make Pure |
|
30 |
||
31 |
$(LOGFILE): $(OUT)/Pure echo.ML find_theorems.ML html_unicode.ML \ |
|
43073
a4c985fe015d
moved html templates to a separate module, making their awkward signatures explicit
krauss
parents:
42157
diff
changeset
|
32 |
html_templates.ML http_status.ML http_util.ML mime.ML scgi_req.ML \ |
43075
6fde0c323c15
added experimental yxml_find_theorems web service (but no client yet)
krauss
parents:
43073
diff
changeset
|
33 |
scgi_server.ML socket_util.ML unicode_symbols.ML xhtml.ML yxml_find_theorems.ML \ |
6fde0c323c15
added experimental yxml_find_theorems web service (but no client yet)
krauss
parents:
43073
diff
changeset
|
34 |
ROOT.ML |
33822 | 35 |
@cd ..; $(ISABELLE_TOOL) usedir Pure WWW_Find |
36 |
||
37 |
||
38 |
## clean |
|
33817 | 39 |
|
40 |
clean: |
|
33822 | 41 |
@rm -f $(LOGFILE) |