mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 22:36:48 +00:00
17 lines
550 B
Makefile
17 lines
550 B
Makefile
all: shell.o cmd.o cmd_help.o cmd_test.o
|
|
|
|
ld -b elf64-x86-64 -z muldefs -o $(tmp_output_dir)/shell $(shell find . -name "*.o") $(shell find $(sys_libs_dir) -name "*.o") -T shell.lds
|
|
|
|
objcopy -I elf64-x86-64 -R ".eh_frame" -R ".comment" -O elf64-x86-64 $(tmp_output_dir)/shell $(output_dir)/shell.elf
|
|
shell.o: shell.c
|
|
$(CC) $(CFLAGS) -c shell.c -o shell.o
|
|
|
|
cmd.o: cmd.c
|
|
$(CC) $(CFLAGS) -c cmd.c -o cmd.o
|
|
|
|
cmd_test.o: cmd_test.c
|
|
$(CC) $(CFLAGS) -c cmd_test.c -o cmd_test.o
|
|
|
|
cmd_help.o: cmd_help.c
|
|
$(CC) $(CFLAGS) -c cmd_help.c -o cmd_help.o
|