pokediamond/tools/bin2obj/Makefile
2023-05-24 09:15:59 +01:00

14 lines
164 B
Makefile

CXX := g++
CXXFLAGS := -O2 -g -std=c++17
.PHONY: all clean
all: bin2obj
@:
clean:
$(RM) bin2obj bin2obj.exe
bin2obj: bin2obj.cpp
$(CXX) $(CXXFLAGS) -o $@ $<