mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-02-04 10:20:01 +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
|