]> git.meshlink.io Git - utcp/blob - Makefile
Start of UTCP.
[utcp] / Makefile
1 CFLAGS ?= -O0 -Wall -g
2 CFLAGS += -std=c99
3
4 test: utcp.c test.c
5
6 selftest: utcp.c selftest.c
7
8 clean:
9         rm -f *.o test selftest
10
11 .PHONY: clean