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