1
0
Fork 0
sortbin/Makefile

14 lines
171 B
Makefile
Raw Normal View History

2022-06-21 07:50:19 +02:00
#
# Makefile for sortbin utility.
#
CXX = g++
CXXFLAGS = -Wall -O2
# -fsanitize=address -fsanitize=undefined
sortbin: sortbin.cpp
.PHONY: clean
clean:
$(RM) sortbin