mirror of
https://github.com/ronitsinha/almia-randomizer.git
synced 2026-09-07 10:05:07 -05:00
15 lines
287 B
Makefile
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
|