forked from FidoCadJ/FidoCadJ
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
38 lines (28 loc) · 694 Bytes
/
Copy pathmakefile
File metadata and controls
38 lines (28 loc) · 694 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
NAME = fidocadj
VERSION = 0.24.8
.PHONY: compile \ # Compile FidoCadJ
createjar \ # Prepare fidocadj.jar
createdoc \ # Run Javadoc on all source files
clean \ # Erase all the compiled classes
cleanall \ # Do a clean, erase fidocadj.jar, Javadocs
run \ # Run FidoCadJ
rebuild \ # Do a clean and then run FidoCadJ
install # Install FidoCadJ
default: compile
compile:
@./dev_tools/compile $(ARGS)
createjar:
@./dev_tools/createjar
createdoc:
@./dev_tools/createdoc
clean:
@./dev_tools/clean
cleanall:
@./dev_tools/cleanall
rebuild: | clean \
compile \
run
run:
@./dev_tools/run $(ARGS)
install: createjar
@./OSes/linux/install