-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (29 loc) · 819 Bytes
/
Makefile
File metadata and controls
37 lines (29 loc) · 819 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
all:
cd createBIM; make
cd createEVENT; make
cd createSAM; make
cd createEDP; make
cd performSIMULATION; make
cd createDL; make
cd finalProcessing; make
HazusLossEstimator.o: HazusLossEstimator.cpp HazusLossEstimator.h
createEDP.o: createEDP.cpp HazusLossEstimator.h
createEDP: $(OBJS)
$(CXX) $(LDFLAGS) -o createEDP $(OBJS) $(LDLIBS)
clean:
cd createBIM; make clean
cd createEVENT; make clean
cd createSAM; make clean
cd createEDP; make clean
cd performSIMULATION; make clean
cd createDL; make clean
cd finalProcessing; make clean
$(RM) $(OBJS) *~ \#*
distclean: clean
cd createBIM; make distclean
cd createEVENT; make distclean
cd createSAM; make distclean
cd createEDP; make distclean
cd performSIMULATION; make distclean
cd createDL; make distclean
cd finalProcessing; make distclean