mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 11:44:17 +01:00
14 lines
165 B
Makefile
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
|