Files
almia-randomizer/Makefile
2023-10-23 15:31:18 -04:00

15 lines
287 B
Makefile

CXX = g++
CXXFLAGS = -Wall -Wextra -Wpedantic -Wshadow
ifeq ($(OS),Windows_NT)
CXXFLAGS += -static
endif
OUTPUT = range_randomizer
all: main
main: clean
$(CXX) ${CXXFLAGS} util.cpp pokedatastructure.cpp \
romprocessor.cpp main.cpp -o ${OUTPUT}
clean:
rm -f range_randomizer *.exe