Makefile 301 B

12345678910111213
  1. all: screen_manager.o textui.o textui-render.o
  2. CFLAGS += -I .
  3. screen_manager.o: screen_manager.c
  4. gcc $(CFLAGS) -c screen_manager.c -o screen_manager.o
  5. textui.o: textui.c
  6. gcc $(CFLAGS) -c textui.c -o textui.o
  7. textui-render.o: textui-render.c
  8. gcc $(CFLAGS) -c textui-render.c -o textui-render.o