Makefile 80 B

1234567
  1. all: uart.o
  2. CFLAGS += -I .
  3. uart.o: uart.c
  4. gcc $(CFLAGS) -c uart.c -o uart.o