EightBit/Makefile
Adrian Conlon 033969bbe3 Add profile guided optimisation to build configuration (profile/profiled)
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2017-11-30 14:59:24 +00:00

39 lines
633 B
Makefile

.PHONY: all
all: opt
.PHONY: opt
opt:
$(MAKE) -C src opt
$(MAKE) -C Z80/src opt
$(MAKE) -C Z80/test opt
.PHONY: debug
debug:
$(MAKE) -C src debug
$(MAKE) -C Z80/src debug
$(MAKE) -C Z80/test debug
.PHONY: coverage
coverage:
$(MAKE) -C src coverage
$(MAKE) -C Z80/src coverage
$(MAKE) -C Z80/test coverage
.PHONY: profile
profile:
$(MAKE) -C src profile
$(MAKE) -C Z80/src profile
$(MAKE) -C Z80/test profile
.PHONY: profiled
profiled:
$(MAKE) -C src profiled
$(MAKE) -C Z80/src profiled
$(MAKE) -C Z80/test profiled
.PHONY: clean
clean:
$(MAKE) -C src clean
$(MAKE) -C Z80/src clean
$(MAKE) -C Z80/test clean