From 3bffbe24b39639caeb3d7c9a22e502104f06a203 Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Wed, 22 Dec 2021 13:45:47 -0600 Subject: [PATCH] build: Rename build/makefile_base.mak to Makefile.in --- build/makefile_base.mak => Makefile.in | 2 +- configure.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename build/makefile_base.mak => Makefile.in (99%) diff --git a/build/makefile_base.mak b/Makefile.in similarity index 99% rename from build/makefile_base.mak rename to Makefile.in index 03f16ac3..87f1c8be 100644 --- a/build/makefile_base.mak +++ b/Makefile.in @@ -44,7 +44,7 @@ else # (Rest of the file is the else) # STEAMRT_NAME - Name of the steam runtime to build against (scout / soldier) ifeq ($(SRCDIR),) - foo := $(error SRCDIR not set, do not include makefile_base directly, run ./configure.sh to generate Makefile) + foo := $(error SRCDIR not set, do not include Makefile.in directly, run ./configure.sh to generate Makefile) endif include $(SRC)/make/utility.mk diff --git a/configure.sh b/configure.sh index 1d40d2eb..6da05a6a 100755 --- a/configure.sh +++ b/configure.sh @@ -187,7 +187,7 @@ function configure() { # Include base echo "" - echo "include \$(SRCDIR)/build/makefile_base.mak" + echo "include \$(SRCDIR)/Makefile.in" } >> "$MAKEFILE" stat "Created $MAKEFILE, now run make to build."