Makefile 76 B

12345678
  1. all: elf.o
  2. CFLAGS += -I .
  3. elf.o: elf.c
  4. gcc $(CFLAGS) -c elf.c -o elf.o