8 lines
82 B
Makefile

all: uart.o
CFLAGS += -I .
uart.o: uart.c
$(CC) $(CFLAGS) -c uart.c -o uart.o