Makefile 197 B

12345678910
  1. all: screen_manager.o textui.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