-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (34 loc) · 1004 Bytes
/
Makefile
File metadata and controls
40 lines (34 loc) · 1004 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
# Top-level Makefile for DINA
all: dina controllers interface iwrap
dina:
make -C src/green
make -C src/scenario
controllers:
make -C src/controllers/kmc
make -C src/controllers/kmc_2madiv
make -C src/controllers/kmc_pfpo1_1a
make -C src/controllers/kmc_pfpo1_1b
interface: dina controllers
make -C imas/iwrap/dina_green
make -C imas/iwrap/dina_imas
make -C imas/iwrap/kmc
make -C imas/iwrap/wf
iwrap: interface
make -C imas/iwrap/dina_green actor
make -C imas/iwrap/dina_imas actor
make -C imas/iwrap/kmc actor
clean:
make -C src/scenario clean
make -C src/green clean
make -C src/controllers/kmc clean
make -C src/controllers/kmc_2madiv clean
make -C src/controllers/kmc_pfpo1_1a clean
make -C src/controllers/kmc_pfpo1_1b clean
make -C imas/astra_transp clean
make -C imas/eq_test clean
make -C imas/circ clean
make -C imas/interface clean
make -C imas/iwrap/dina_green clean
make -C imas/iwrap/dina_imas clean
make -C imas/iwrap/kmc clean
make -C imas/iwrap/wf clean