9 lines
76 B
Makefile

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