summaryrefslogtreecommitdiff
path: root/tools/msgenc/Makefile
blob: 2fc4f3a9ef644b0ca2f62ec2a75622ea5bacbffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 $@ $^