From 4a24a0364f4dd6b5fb92d3c3104ddb080b97bc12 Mon Sep 17 00:00:00 2001 From: heinezen Date: Tue, 10 Oct 2023 17:14:56 +0200 Subject: [PATCH] Let 'make run' call the 'main' submodule instead of 'game'. Changed because 'game' requires arguments now. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index da6c6a2ae9..ef481521b2 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ install: $(BUILDDIR) .PHONY: run run: build - cd $(BUILDDIR) && ./run game + cd $(BUILDDIR) && ./run main .PHONY: test test: tests checkfast