summaryrefslogtreecommitdiff
path: root/Makefile
blob: dc2d83c33091d3882894779ae23eb4018e488397 (plain)
1
2
3
4
5
6
7
8
CC=clang++
CFLAGS=-Wall -s -static -O3 -Wextra -DNDEBUG -fomit-frame-pointer -flto -std=c++20

all:
	$(CC) $(CFLAGS) read_print_file.cpp -o rpf

clean:
	rm -f rpf