Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Makefile.commands
blob: 04f228c13e53a3f482ff9c6dd8a8d573810756a5 (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
29
30
31
32
33
34
.PHONY: auto-install check-system build run test shell bug-report clean

auto-install:
	@$(COMMANDS_DIR)/auto-install

check-system:
	@$(COMMANDS_DIR)/check-system $(ARGS)

pull:
	@$(COMMANDS_DIR)/pull

build:
	@$(COMMANDS_DIR)/build

run: helpers-build
	@$(COMMANDS_DIR)/run

test: helpers-build
	@$(COMMANDS_DIR)/test

shell: helpers-build
	@$(COMMANDS_DIR)/shell

bug-report:
	@$(COMMANDS_DIR)/bug-report

clean: helpers-clean
	@$(COMMANDS_DIR)/clean

build-%:
	@$(COMMANDS_DIR)/build $*

pull-%:
	@$(COMMANDS_DIR)/pull $*