]> git.meshlink.io Git - utcp/blob - Makefile
Send ACKs also when receiving out-of-order data.
[utcp] / Makefile
1 CFLAGS ?= -Og -Wall -g
2 CFLAGS += -std=c99 -DUTCP_DEBUG
3
4 BIN = selftest test
5
6 all: $(BIN)
7
8 utcp.o: utcp.c utcp.h utcp_priv.h
9
10 test: utcp.o test.c
11
12 selftest: utcp.o selftest.c
13
14 clean:
15         rm -f *.o $(BIN)
16
17 .PHONY: clean