-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (26 loc) · 594 Bytes
/
Makefile
File metadata and controls
37 lines (26 loc) · 594 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
.PHONY: docs
CORE := continuum-core
REST := continuum-rest
MAIN := continuum-main
GRADLE := ./gradlew
default: all
all:
$(GRADLE) all
bin:
$(GRADLE) bin
deb:
$(GRADLE) deb
docs:
$(GRADLE) docs
cp -r $(CORE)/build/docs/javadoc docs/html/
cp -r $(CORE)/build/reports/tests docs/html/
cp -r $(CORE)/build/coverage.html docs/html/
mkdir -p docs/html/rest
cp -r $(REST)/media docs/html/rest/
cp -r $(REST)/README.html docs/html/rest/index.html
deploydocs: docs
rsync -aurv docs/html/ zackbart@zackbartel.com:~/web/continuum/
sloc:
cloc continuum*/src
clean:
$(GRADLE) clean