about summary refs log tree commit diff
path: root/Makefile
blob: 88979ce1065564a6d940967167878eb4cb170043 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
CFLAGS=-g -O2 -Wall -Wno-unused-parameter -Wextra -Wwrite-strings
LDLIBS=-luv

ALL=nitro

all: $(ALL)

clean: FRC
	rm -f $(ALL)

FRC: