summaryrefslogtreecommitdiff
path: root/tools/bin2obj/Makefile
blob: 760a66e261f69361db37cc832d96b0c4567caf93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CXX := g++
CXXFLAGS := -O2 -g -std=c++17

.PHONY: all clean

all: bin2obj
	@:

clean:
	$(RM) bin2obj bin2obj.exe

bin2obj: bin2obj.cpp
	$(CXX) $(CXXFLAGS) -o $@ $<