summaryrefslogtreecommitdiff
path: root/tools/o2narc/Makefile
blob: d7e8444e6ac418b19c7e91ba7b8b87f848628fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
CXX := g++
CXXFLAGS := -O3 -std=c++11

all: o2narc
	@:

o2narc: o2narc.cpp elf.h
	$(CXX) $(CXXFLAGS) -o $@ $<

clean:
	$(RM) o2narc o2narc.exe