-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
53 lines (44 loc) · 1.38 KB
/
makefile
File metadata and controls
53 lines (44 loc) · 1.38 KB
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
MAKE_DIR = $(PWD)
OUTPUT_DIR = bin/Debug/net8.0
IMAGEPARSER := $(MAKE_DIR)/ImageParserForAPI
LOGGER := $(MAKE_DIR)/Logger
WEAPONUTILITY := $(MAKE_DIR)/WeaponUtility2
STATSTRUCTURE := $(MAKE_DIR)/StatisticStructure
FILEPARSER := $(MAKE_DIR)/FileParse
PINVOKE := $(MAKE_DIR)/p_invokewrapper
PYTHONEXEC := $(MAKE_DIR)/PyExec
CONVERSION := $(MAKE_DIR)/Conversion
WEAPONSTRUCTURE := $(MAKE_DIR)/WeaponStructure
COMPONENTTESTER := $(MAKE_DIR)/ComponentTester
SQLITEHANDLER := $(MAKE_DIR)/SQLiteHandler
.PHONY: individualAll
individualAll:
@cd $(IMAGEPARSER) && make
@cd $(LOGGER) && make
@cd $(WEAPONUTILITY) && make
@cd $(FILEPARSER) && make
@cd $(STATSTRUCTURE) && make
@cd $(SQLITEHANDLER) && make
@cd $(PYTHONEXEC) && make
@cd $(CONVERSION) && make
@cd $(WEAPONSTRUCTURE) && make
@cd $(COMPONENTTESTER) && make
# @make -C $(PINVOKE)
.PHONY: publishAll
publishAll:
.PHONY: cleanAll
cleanAll:
@cd $(IMAGEPARSER) && make clean
@cd $(LOGGER) && make clean
@cd $(WEAPONUTILITY) && make clean
@cd $(FILEPARSER) && make clean
@cd $(STATSTRUCTURE) && make clean
@cd $(SQLITEHANDLER) && make clean
@cd $(PYTHONEXEC) && make clean
@cd $(CONVERSION) && make clean
@cd $(WEAPONSTRUCTURE) && make clean
@cd $(COMPONENTTESTER) && make clean
.PHONY: allDependencies
allDependencies:
@cd $(COMPONENTTESTER) && make all
cp -vruaf $(COMPONENTTESTER)/$(OUTPUT_DIR) $(MAKE_DIR)