giteapc: also install CP target by default

This commit is contained in:
Lephe 2025-03-24 20:18:10 +01:00
parent 4a5c0bbfec
commit 48718bf9be
No known key found for this signature in database
GPG key ID: 1BBA026E13FC0495

View file

@ -6,16 +6,19 @@ configure:
@ fxsdk build-fx -c $(GINT_CMAKE_OPTIONS) @ fxsdk build-fx -c $(GINT_CMAKE_OPTIONS)
@ fxsdk build-cg -c $(GINT_CMAKE_OPTIONS) @ fxsdk build-cg -c $(GINT_CMAKE_OPTIONS)
@ fxsdk build-fxg3a -c $(GINT_CMAKE_OPTIONS) @ fxsdk build-fxg3a -c $(GINT_CMAKE_OPTIONS)
@ fxsdk build-cp -c $(GINT_CMAKE_OPTIONS)
build: build:
@ fxsdk build-fx @ fxsdk build-fx
@ fxsdk build-cg @ fxsdk build-cg
@ fxsdk build-fxg3a @ fxsdk build-fxg3a
@ fxsdk build-cp
install: install:
@ fxsdk build-fx install @ fxsdk build-fx install
@ fxsdk build-cg install @ fxsdk build-cg install
@ fxsdk build-fxg3a install @ fxsdk build-fxg3a install
@ fxsdk build-cp install
uninstall: uninstall:
@ if [ -e build-fx/install_manifest.txt ]; then \ @ if [ -e build-fx/install_manifest.txt ]; then \
@ -27,5 +30,8 @@ uninstall:
@ if [ -e build-fxg3a/install_manifest.txt ]; then \ @ if [ -e build-fxg3a/install_manifest.txt ]; then \
xargs rm -f < build-fxg3a/install_manifest.txt; \ xargs rm -f < build-fxg3a/install_manifest.txt; \
fi fi
@ if [ -e build-cp/install_manifest.txt ]; then \
xargs rm -f < build-cp/install_manifest.txt; \
fi
.PHONY: configure build install uninstall .PHONY: configure build install uninstall