Makefile 184 B

1234567891011
  1. CFLAGS += -I .
  2. all: bitree.o kfifo.o
  3. bitree.o: test-bitree.c
  4. gcc $(CFLAGS) -c test-bitree.c -o test-bitree.o
  5. kfifo.o: test-kfifo.c
  6. gcc $(CFLAGS) -c test-kfifo.c -o test-kfifo.o