From b314ea095f4d89fcbc675a97bad378e22db4bd3d Mon Sep 17 00:00:00 2001 From: ronitsinha Date: Sat, 22 Jul 2023 23:28:31 -0400 Subject: [PATCH] added output var to makefile --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fbc6293..23bf94f 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,12 @@ CXX = g++ CXXFLAGS = -Wall -Wextra -Wpedantic -Wshadow +OUTPUT = range_randomizer all: main main: clean $(CXX) ${CXXFLAGS} util.cpp pokedatastructure.cpp \ - romprocessor.cpp main.cpp -o range_randomizer + romprocessor.cpp main.cpp -o ${OUTPUT} clean: - rm -f range_randomizer \ No newline at end of file + rm -f range_randomizer *.exe \ No newline at end of file