]> git.meshlink.io Git - utcp/blob - Makefile
Build both binaries.
[utcp] / Makefile
1 CFLAGS ?= -O0 -Wall -g
2 CFLAGS += -std=c99
3
4 BIN = selftest test
5
6 all: $(BIN)
7
8 test: utcp.c test.c
9
10 selftest: utcp.c selftest.c
11
12 clean:
13         rm -f *.o $(BIN)
14
15 .PHONY: clean