mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-24 13:13:24 +00:00
12 lines
126 B
Makefile
12 lines
126 B
Makefile
|
|
|
|
all: start.o
|
|
|
|
ifeq ($(ARCH), __x86_64__)
|
|
start.o:
|
|
gcc $(CFLAGS) -c elf/start.c -o elf/start.o
|
|
endif
|
|
|
|
clean:
|
|
|
|
echo "Done."
|