mirror of
https://github.com/ronitsinha/almia-randomizer.git
synced 2026-09-07 01:55:08 -05:00
added output var to makefile
This commit is contained in:
5
Makefile
5
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
|
||||
rm -f range_randomizer *.exe
|
||||
Reference in New Issue
Block a user