breakhack/Makefile

29 lines
423 B
Makefile
Raw Normal View History

all:
2018-09-13 23:50:33 +02:00
@make -sC _build/debug
.PHONY: all
2018-10-23 11:01:35 +02:00
release:
@make -sC _build/release
.PHONY: release
clean:
2018-09-13 23:50:33 +02:00
@make clean -sC _build/debug
@make clean -sC _build/release
.PHONY: clean
test:
2018-09-13 23:50:33 +02:00
@make test -sC _build/debug
.PHONY: test
2018-01-31 09:15:33 +01:00
run: $(all)
2018-10-21 07:36:47 +02:00
@LD_LIBRARY_PATH=$LD_LIBRARY_PATH:./ ./_build/debug/breakhack
2018-01-31 09:15:33 +01:00
.PHONY: run
2018-03-12 14:55:09 +01:00
lint:
2018-09-13 23:50:33 +02:00
@make lint -sC _build/debug
2018-03-12 14:55:09 +01:00
.PHONY: lint
package:
2018-09-13 23:50:33 +02:00
@make package -sC _build/release
.PHONY: package