-
-
Notifications
You must be signed in to change notification settings - Fork 370
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (24 loc) · 569 Bytes
/
Makefile
File metadata and controls
31 lines (24 loc) · 569 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
all:
mkdir -p build
@echo "Run 'sudo make install' for installation."
@echo "Run 'sudo make uninstall' for uninstallation."
cd src && $(MAKE)
install:
@echo "Installing..."
cd src && $(MAKE) install
test:
mkdir -p build
@echo "Testing..."
cd test && $(MAKE)
install-cli-only:
@echo "Installing command line interface only..."
cd src/scripts && $(MAKE) install-cli-only
uninstall:
@echo "Uninstalling..."
cd src && $(MAKE) uninstall
clean-old:
cd src && $(MAKE) clean-old
.PHONY: clean test
clean:
cd src && $(MAKE) clean
cd test && $(MAKE) clean