mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-10 16:26:48 +00:00
17 lines
324 B
Makefile
17 lines
324 B
Makefile
|
|
CFLAGS += -I .
|
|
|
|
|
|
all: ktest.o bitree.o kfifo.o mutex.o
|
|
|
|
ktest.o: ktest.c
|
|
gcc $(CFLAGS) -c ktest.c -o ktest.o
|
|
|
|
bitree.o: test-bitree.c
|
|
gcc $(CFLAGS) -c test-bitree.c -o test-bitree.o
|
|
|
|
kfifo.o: test-kfifo.c
|
|
gcc $(CFLAGS) -c test-kfifo.c -o test-kfifo.o
|
|
|
|
mutex.o: test-mutex.c
|
|
gcc $(CFLAGS) -c test-mutex.c -o test-mutex.o
|