File: Makefile

package info (click to toggle)
eprover 2.6%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,288 kB
  • sloc: ansic: 331,111; csh: 12,026; python: 10,178; awk: 5,825; makefile: 461; sh: 389
file content (52 lines) | stat: -rw-r--r-- 1,295 bytes parent folder | download
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
#------------------------------------------------------------------------
#
# File  : Makefile for E prover
#
# Author: Stephan Schulz
#
# Changes
#
# <1> Tue Jun  9 01:29:39 MET DST 1998
#     New
#
#------------------------------------------------------------------------

include ../Makefile.vars

# Project specific variables

BIN_PROGRAMS = eprover e_ltb_runner e_stratpar e_deduction_server \
               e_axfilter e_server e_client eground enormalizer edpll \
              classify_problem epatternize direct_examples epclanalyse \
              epcllemma epclextract checkproof ekb_create ekb_insert \
              ekb_ginsert ekb_delete

LOCAL_LIBS =  ../lib/CONTROL.a ../lib/PCL2.a ../lib/HEURISTICS.a \
	      ../lib/LEARN.a ../lib/PROPOSITIONAL.a ../lib/CLAUSES.a \
	      ../lib/ORDERINGS.a ../lib/TERMS.a ../lib/INOUT.a \
	      ../lib/BASICS.a

all: $(BIN_PROGRAMS) $(EHOH)

depend: *.c
	$(MAKEDEPEND)

# Remove all automatically generated files

clean:
	@rm -rf *.o $(BIN_PROGRAMS) $(EHOH) *.dSYM termprops tsm_classify
	@rm -rf eprover-ho

# Services (provided by the master Makefile)

include ../Makefile.services

# Build the programs

%: %.o $(LOCAL_LIBS)
	$(LD) -o $@ $< $(LOCAL_LIBS) $(LIBS)

eprover-ho: eprover
	mv eprover eprover-ho

include Makefile.dependencies