9 lines
78 B
Makefile

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