mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-07 19:24:15 -05:00
14 lines
197 B
Makefile
14 lines
197 B
Makefile
CXXFLAGS := -std=c++17 -O2 -Wall -Wno-switch
|
|
CFLAGS := -O2 -Wall -Wno-switch
|
|
|
|
.PHONY: all clean
|
|
|
|
all: msgenc
|
|
@:
|
|
|
|
clean:
|
|
$(RM) msgenc msgenc.exe
|
|
|
|
msgenc: msgenc.cpp
|
|
$(CXX) $(CXXFLAGS) -o $@ $^
|