forked from cpraveen/euler2d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (27 loc) · 789 Bytes
/
Makefile
File metadata and controls
38 lines (27 loc) · 789 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
# This makefile doesnt actually do anything. It just runs the Makefile in the
# specific directories.
RM=rm -f
#Location of flow solver files
SRCFLO=./src-flo
#Location of adjoint files
SRCADJ=./src-adj
#Mesh deformation and adjoint files
SRCMSH=./src-mesh
#Directory with some tapenade-related stuff
TPDIR=./tapenade
TARGETS = flo adj mesh
ALL: $(TARGETS)
flo:
cd ${SRCFLO}; make
adj:
cd ${SRCADJ}; make
mesh:
cd ${SRCMSH}; make
##############################################################################
# clean things up
##############################################################################
clean:
cd ${SRCFLO}; ${RM} *.o *.msg *~ flo
cd ${SRCADJ}; ${RM} *.o *.msg *~ adj
cd ${SRCMSH}; ${RM} *.o *.msg *~ deform adjoint
cd ${TPDIR}; ${RM} *.o