-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
34 lines (25 loc) · 784 Bytes
/
Makefile
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
STEROIDS_VERSION="0.1"
ERLYDTL_VERSION="0.1"
all: compile test
full: compile dializer test_full docs
compile:
@echo "Compiling..."
@make -sC"lib/steroids-$(STEROIDS_VERSION)" compile
@make -sC"lib/erlydtl-ng-$(ERLYDTL_VERSION)" compile
dializer:
@echo "Checking types..."
@make -sC "lib/steroids-$(STEROIDS_VERSION)" dializer
docs:
@echo "Generating docs..."
@make -sC "lib/steroids-$(STEROIDS_VERSION)" docs
test: compile
@echo "Testing..."
@make -sC "lib/steroids-$(STEROIDS_VERSION)" test
test_full: compile
@echo "Testing..."
@make -sC "lib/steroids-$(STEROIDS_VERSION)" test
@make -sC"lib/erlydtl-ng-$(ERLYDTL_VERSION)" test
clean:
@echo "Cleaning..."
@make -sC "lib/steroids-$(STEROIDS_VERSION)" clean
@make -sC"lib/erlydtl-ng-$(ERLYDTL_VERSION)" clean