1
0
Fork 0
sortbin/Makefile

18 lines
230 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
2022-06-24 15:16:22 +02:00
.PHONY: all
all: sortbin recgen
2022-06-21 07:50:19 +02:00
sortbin: sortbin.cpp
2022-06-24 15:16:22 +02:00
recgen: recgen.cpp
2022-06-21 07:50:19 +02:00
.PHONY: clean
clean:
2022-06-24 15:16:22 +02:00
$(RM) sortbin recgen