blob: b0835fd273387f35e5bd7c823c9ab53ef554e1e1 (
plain)
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
|
BUILD_PROFILE = release
.PHONY: build debug clean format install install_debug uninstall run
build:
BUILD_PROFILE=$(BUILD_PROFILE) $(MAKE) -f Makefile.logic
debug: BUILD_PROFILE = debug
debug: build
clean:
BUILD_PROFILE=$(BUILD_PROFILE) $(MAKE) -f Makefile.logic clean
format:
$(MAKE) -f Makefile.logic format
install:
BUILD_PROFILE=$(BUILD_PROFILE) $(MAKE) -f Makefile.logic install
install_debug: BUILD_PROFILE = debug
install_debug: install
uninstall:
$(MAKE) -f Makefile.logic uninstall
run:
$(MAKE) -f Makefile.logic run
|