Makefile 324 B

1234567891011121314151617
  1. CFLAGS += -I .
  2. all: ktest.o bitree.o kfifo.o mutex.o
  3. ktest.o: ktest.c
  4. gcc $(CFLAGS) -c ktest.c -o ktest.o
  5. bitree.o: test-bitree.c
  6. gcc $(CFLAGS) -c test-bitree.c -o test-bitree.o
  7. kfifo.o: test-kfifo.c
  8. gcc $(CFLAGS) -c test-kfifo.c -o test-kfifo.o
  9. mutex.o: test-mutex.c
  10. gcc $(CFLAGS) -c test-mutex.c -o test-mutex.o