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