mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-07 03:04:19 -05:00
12 lines
143 B
Makefile
12 lines
143 B
Makefile
CXX := g++
|
|
CXXFLAGS := -O3 -std=c++11
|
|
|
|
all: o2narc
|
|
@:
|
|
|
|
o2narc: o2narc.cpp elf.h
|
|
$(CXX) $(CXXFLAGS) -o $@ $<
|
|
|
|
clean:
|
|
$(RM) o2narc o2narc.exe
|