MissionControl/Makefile

46 lines
1.4 KiB
Makefile
Raw Normal View History

2020-07-15 16:59:16 +00:00
PROJECT_NAME := MissionControl
2021-02-03 23:18:26 +00:00
MC_MITM_TID := 010000000000bd00
2020-04-17 09:50:30 +00:00
GIT_BRANCH := $(shell git symbolic-ref --short HEAD | sed s/[^a-zA-Z0-9_-]/_/g)
GIT_HASH := $(shell git rev-parse --short HEAD)
GIT_TAG := $(shell git describe --tags `git rev-list --tags --max-count=1`)
BUILD_VERSION := $(GIT_TAG:v%=%)-$(GIT_BRANCH)-$(GIT_HASH)
TARGETS := mcmitm_version.cpp mc_mitm
2020-04-17 09:50:30 +00:00
all: $(TARGETS)
mcmitm_version.cpp: .git/HEAD .git/index
echo "namespace ams::mitm { const char *version_string = \"$(BUILD_VERSION)\"; }" > mc_mitm/source/$@
2021-02-03 23:18:26 +00:00
mc_mitm:
2020-04-17 09:50:30 +00:00
$(MAKE) -C $@
clean:
2021-02-03 23:18:26 +00:00
$(MAKE) -C mc_mitm clean
rm mc_mitm/source/mcmitm_version.cpp
2020-04-17 09:50:30 +00:00
rm -rf dist
2020-07-15 16:59:16 +00:00
dist: all
2020-04-17 09:50:30 +00:00
rm -rf dist
2020-07-15 16:59:16 +00:00
2021-02-03 23:18:26 +00:00
mkdir -p dist/atmosphere/contents/$(MC_MITM_TID)
cp mc_mitm/mc_mitm.nsp dist/atmosphere/contents/$(MC_MITM_TID)/exefs.nsp
echo "btdrv" >> dist/atmosphere/contents/$(MC_MITM_TID)/mitm.lst
echo "btm" >> dist/atmosphere/contents/$(MC_MITM_TID)/mitm.lst
2021-02-03 23:18:26 +00:00
mkdir -p dist/atmosphere/contents/$(MC_MITM_TID)/flags
touch dist/atmosphere/contents/$(MC_MITM_TID)/flags/boot2.flag
2021-02-03 23:18:26 +00:00
cp mc_mitm/toolbox.json dist/atmosphere/contents/$(MC_MITM_TID)/toolbox.json
2020-07-15 16:59:16 +00:00
cp -r exefs_patches dist/atmosphere/
mkdir -p dist/config/MissionControl
mkdir -p dist/config/MissionControl/controllers
cp mc_mitm/config.ini dist/config/MissionControl/missioncontrol.ini.template
cd dist; zip -r $(PROJECT_NAME)-$(BUILD_VERSION).zip ./*; cd ../;
2020-07-15 16:59:16 +00:00
.PHONY: all clean dist $(TARGETS)