-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.linux
50 lines (33 loc) · 1001 Bytes
/
Makefile.linux
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
# ........................................................................
#
# fgarcia,acaldero@hinojo.datsi.fi.upm.es
#
# ........................................................................
#--------------------------
# 1.- Native configuration
#--------------------------
MAKE = make
SRCDIR = .
DIR = src_EXTERN src util example
#--------------------------
# 2.- library object
#--------------------------
#--------------------------
# 3.- compilation rules
#--------------------------
all: init object
fast: object
init:
@echo [2J
@echo "[1;1f"
@echo ""
@echo " MiMPI"
@echo " -------"
@echo ""
object:
@set -e; for i in $(DIR); do $(MAKE) -C $$i -f Makefile.linux fast ; done
clean:
@echo " Removing trash..."
@set -e; for i in $(DIR); do $(MAKE) -C $$i -f Makefile.linux clean ; done
@echo " Trash succesfully removed !."
# ........................................................................