sovereignx/tools/scaninc/Makefile

14 lines
165 B
Makefile
Raw Normal View History

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