pokeemerald/tools/scaninc/Makefile
2015-11-13 21:57:22 -08:00

14 lines
165 B
Makefile

CXX = g++
CXXFLAGS = -Wall -std=c++11 -O2
SRCS = scaninc.cpp
.PHONY: clean
scaninc: $(SRCS)
$(CXX) $(CXXFLAGS) $(SRCS) -o $@
clean:
$(RM) scaninc scaninc.exe