mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 23:46:48 +00:00
9 lines
78 B
Makefile
9 lines
78 B
Makefile
|
|
all: elf.o
|
|
|
|
CFLAGS += -I .
|
|
|
|
|
|
elf.o: elf.c
|
|
$(CC) $(CFLAGS) -c elf.c -o elf.o
|