mirror of
https://github.com/pret/pokediamond.git
synced 2026-04-19 03:17:29 -05:00
14 lines
164 B
Makefile
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 $@ $<
|