-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLPrologMakefile
83 lines (58 loc) · 1.76 KB
/
LPrologMakefile
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
78
79
80
81
82
83
###########################################################################
# Teyjus-Makefile
# Copyright (C) 2000 Markus Mottl
# Free to copy and modify! USE AT YOUR OWN RISK!
#
###########################################################################
# Set these variables to the names of the sources to be processed and
# the result variable.
export MODULES
export QUERY
export MAIN
export RESULT
# Eventually set include path
export PATHS
# Add a list of optional trash files that should be deleted by "make clean"
export TRASH
#################### variables depending on your Teyjus-installation
ifndef TJCC
TJCC = tjcc
endif
export TJCC
ifndef TJSIM
TJSIM = tjsim
endif
export TJSIM
ifndef SHELL
SHELL = /bin/sh
endif
export SHELL
###########################################################################
#################### change following sections only if
#################### you know what you are doing!
INTF = $(SOURCES:%=%.sig)
IMPL = $(SOURCES:%=%.mod)
OBJ = $(SOURCES:%=%.lp)
TJCCFLAGS = $(PATHS:%=-p %)
TARGETS = $(OBJ) $(RESULT)
###########################################################################
# USER RULES
all: $(RESULT)
###########################################################################
# LOW LEVEL RULES
$(RESULT): $(OBJ)
@printf "Making result *$(RESULT)* calling *$(MAIN).$(QUERY)*\n"
@printf "#!$(SHELL)\n$(TJSIM) -b $(PATHS) -s \"$(QUERY)\" $(MAIN)\n" >$@
@chmod 755 $@
.SUFFIXES: .lp
%.lp: %.sig %.mod
$(TJCC) $(TJCCFLAGS) -o $@ $<
@echo
###########################################################################
# MAINTAINANCE RULES
.PHONY: clean
clean:
rm -f $(TARGETS) $(TRASH)
.PHONY: nobackup
nobackup:
rm -f *.bak *~ *.dup