1 2all: screen_manager.o textui.o textui-render.o 3 4CFLAGS += -I . 5 6screen_manager.o: screen_manager.c 7 $(CC) $(CFLAGS) -c screen_manager.c -o screen_manager.o 8 9textui.o: textui.c 10 $(CC) $(CFLAGS) -c textui.c -o textui.o 11 12textui-render.o: textui-render.c 13 $(CC) $(CFLAGS) -c textui-render.c -o textui-render.o 14