summary refs log tree commit diff
path: root/Makefile
blob: aeae237dd66b4e7a31d3b2f85d4debe62c98be83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
CFLAGS=-g -O2 -Wall -Wno-switch -Wextra -Wwrite-strings -Wno-format-truncation -pthread

ALL=rvnit

all: $(ALL)

clean: FRC
	rm -f $(ALL)

FRC: