-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·45 lines (32 loc) · 824 Bytes
/
Copy pathMakefile
File metadata and controls
executable file
·45 lines (32 loc) · 824 Bytes
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
# include makefile configure
include ./config/Makefile.conf.$(comp)
PRJDIRS = $(FFTPLN) $(EOFTEMP) $(EOFHUMI) $(EOFWIND) $(DECEOF) $(RECANL) $(RDPERT) $(DECANL) $(RECFCT) $(EOFPRES)
# not real file targets
.PHONY: $(MAKEFILE) all clean help
# targets
all:
@$(CD) $(FFTPLN) && \
$(MAKE) comp=$(comp)
@$(CD) $(EOFTEMP) && \
$(MAKE) comp=$(comp)
@$(CD) $(EOFHUMI) && \
$(MAKE) comp=$(comp)
@$(CD) $(EOFWIND) && \
$(MAKE) comp=$(comp)
@$(CD) $(DECEOF) && \
$(MAKE) comp=$(comp)
@$(CD) $(RECANL) && \
$(MAKE) comp=$(comp)
@$(CD) $(RDPERT) && \
$(MAKE) comp=$(comp)
@$(CD) $(DECANL) && \
$(MAKE) comp=$(comp)
@$(CD) $(RECFCT) && \
$(MAKE) comp=$(comp)
@$(CD) $(EOFPRES) && \
$(MAKE) comp=$(comp)
# cleanup
clean:
@for dir in $(PRJDIRS); do \
($(CD) $$dir && $(MAKE) comp=$(comp) $@); \
done