-
Notifications
You must be signed in to change notification settings - Fork 3
/
make.config
60 lines (42 loc) · 1.44 KB
/
make.config
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
# Specify MPI C compiler
CC = mpicc
# Specify D compiler
DC = dmd
DLIBS = -lphobos2 -lrt
AR = ar
RANLIB = ranlib
####################################################################
# Rules for compiling D and C source files
####################################################################
OBJD = $(SOURCED:%.d=%.o)
OBJC = $(SOURCEC:%.c=%.c.o)
%.c.o: %.c
$(CC) -o $@ -c $< $(CINCLUDE)
%.o: %.d
$(DC) -H -c $< -I$(TOP) $(DINCLUDE)
.PHONY: all
all: $(DIRS) $(TARGET) $(LIBTARGET)
####################################################################
# Recursively run make through subdirs
####################################################################
.PHONY: $(DIRS)
$(DIRS):
@echo " making directory " $@
@$(MAKE) --no-print-directory -C $@ all
####################################################################
# Library target
####################################################################
$(LIBTARGET): $(OBJD) $(OBJC) makefile $(TOP)/make.config
$(AR) cru $(LIBTARGET) $(OBJD) $(OBJC)
$(RANLIB) $(LIBTARGET)
####################################################################
# Clean directories
#
# Note: Called "clear" because PETSc makefiles define clean::
# which deletes .d files
#
####################################################################
.PHONY: clear
clear::
-@rm -f $(OBJC) $(OBJD) $(TARGET) $(LIBTARGET)
@for pp in $(DIRS); do echo " " $$pp cleaned; $(MAKE) --no-print-directory -C $$pp clear; done