-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·41 lines (33 loc) · 1.44 KB
/
Makefile
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
# /*-----------------------------------------------------------------------*/
# /* clp(FD) INRIA Rocquencourt - CLoE Project */
# /* Daniel Diaz */
# /* */
# /* Makefile */
# /*-----------------------------------------------------------------------*/
#############################################################################
# Main Makefile
# Modified by Yan Georget
# June 1998
#############################################################################
#############################################################################
# variables
#############################################################################
CC = gcc
WCC = wam_$(CC)
#############################################################################
# entries
#############################################################################
semiring:
cd Builtin ; make
cd src ; make
install:
cd Builtin ; touch *.c
cd src ; touch *.c ; make $(WCC)
cd Builtin ; make
cd src ; make
#############################################################################
# clean
#############################################################################
clean:
cd src ; make clean
cd Builtin ; make clean