xref: /aosp_15_r20/external/openthread/third_party/tcplp/lib/test/Makefile (revision cfb92d1480a9e65faed56933e9c12405f45898b4)
1CC=clang
2CFLAGS=-I ../../../../include -O2 -Wall
3
4all: test_all
5
6%.o: ../%.c
7	clang -c $(CFLAGS) $< -o $@
8
9test_all.o: test_all.c
10	clang -c $(CFLAGS) test_all.c -o $@
11
12test_all: test_all.o cbuf.o lbuf.o bitmap.o
13	clang test_all.o cbuf.o lbuf.o bitmap.o -o test_all
14
15clean:
16	rm -f *.o test_all
17