2022-08-03 17:13:46 +08:00

10 lines
197 B
Makefile

all: screen_manager.o textui.o
CFLAGS += -I .
screen_manager.o: screen_manager.c
gcc $(CFLAGS) -c screen_manager.c -o screen_manager.o
textui.o: textui.c
gcc $(CFLAGS) -c textui.c -o textui.o