commit e17fc4e572c37a421337362d52832aca75796182
parent 21eff6c7c215672d9d0fedd68bc1ca3c3eb4762f
Author: TheJackiMonster <thejackimonster@gmail.com>
Date: Mon, 1 Nov 2021 21:31:26 +0100
Added mobile target to makefile for debugging
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
@@ -46,6 +46,11 @@ release: $(BINARY)
$(BINARY): $(OBJECT_FILES)
$(GNU_LD) $(LDFLAGS) $^ -o $@ $(LIBRARY_FLAGS) $(PACKAGE_FLAGS)
+.PHONY: mobile
+
+mobile: $(BINARY)
+ ./$(BINARY) --mobile
+
.PHONY: install
install: