-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
25 lines (19 loc) · 564 Bytes
/
Makefile
File metadata and controls
25 lines (19 loc) · 564 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
.PHONY: all build install test clean help
all: build
help:
@echo "Phantom Stream Root Makefile"
@echo "Delegates commands to defender/Makefile"
@echo ""
@echo "Available commands:"
@echo " make build - Build the defender binary"
@echo " make install - Install the defender binary to system (may require sudo)"
@echo " make test - Run defender tests"
@echo " make clean - Clean defender artifacts"
build:
$(MAKE) -C defender build
install:
$(MAKE) -C defender install
test:
$(MAKE) -C defender test
clean:
$(MAKE) -C defender clean