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

ALL=rvnit

all: $(ALL)

clean: FRC
	rm -f $(ALL)

FRC: