nostalgia/Makefile

41 lines
1.0 KiB
Makefile
Raw Normal View History

PROJECT_NAME=nostalgia
VCPKG_VERSION=2020.06
include deps/buildcore/base.mk
2016-12-18 15:54:13 -06:00
2019-11-13 20:37:23 -06:00
ifeq ($(OS),darwin)
NOSTALGIA_STUDIO=./dist/${CURRENT_BUILD}/nostalgia-studio.app/Contents/MacOS/nostalgia-studio
2019-12-30 22:51:35 -06:00
MGBA=/Applications/mGBA.app/Contents/MacOS/mGBA
2019-11-13 20:37:23 -06:00
else
NOSTALGIA_STUDIO=./dist/${CURRENT_BUILD}/bin/nostalgia-studio
2019-12-30 22:51:35 -06:00
MGBA=mgba-qt
2019-11-13 20:37:23 -06:00
endif
.PHONY: pkg-gba
pkg-gba:
${ENV_RUN} ${CMAKE_BUILD} build install
2020-06-20 05:27:03 -05:00
${ENV_RUN} ./scripts/pkg-gba sample_project
2016-12-23 18:06:27 -06:00
.PHONY: run
2017-05-16 13:53:57 -05:00
run: install
${ENV_RUN} ./dist/${CURRENT_BUILD}/bin/nostalgia sample_project
.PHONY: run-studio
2017-05-16 13:53:57 -05:00
run-studio: install
${ENV_RUN} ${NOSTALGIA_STUDIO}
.PHONY: gba-run
gba-run: pkg-gba
2019-12-30 22:51:35 -06:00
${MGBA} nostalgia.gba
.PHONY: gdb
debug: install
${ENV_RUN} gdb --args ./dist/${CURRENT_BUILD}/bin/nostalgia sample_project
.PHONY: gdb-studio
debug-studio: install
${ENV_RUN} gdb --args ${NOSTALGIA_STUDIO}
2016-12-23 18:06:27 -06:00
.PHONY: configure-gba
configure-gba:
${ENV_RUN} ${SETUP_BUILD} --target gba --build_type release
2016-12-24 13:06:44 -06:00
.PHONY: configure-gba-debug
configure-gba-debug:
${ENV_RUN} ${SETUP_BUILD} --target gba --build_type debug