diff options
Diffstat (limited to 'qemu/tests/multiboot/Makefile')
-rw-r--r-- | qemu/tests/multiboot/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/qemu/tests/multiboot/Makefile b/qemu/tests/multiboot/Makefile new file mode 100644 index 000000000..36f01dc64 --- /dev/null +++ b/qemu/tests/multiboot/Makefile @@ -0,0 +1,21 @@ +CC=gcc +CCFLAGS=-m32 -Wall -Wextra -Werror -fno-stack-protector -nostdinc -fno-builtin +ASFLAGS=-m32 + +LD=ld +LDFLAGS=-melf_i386 -T link.ld +LIBS=$(shell $(CC) $(CCFLAGS) -print-libgcc-file-name) + +all: mmap.elf modules.elf + +mmap.elf: start.o mmap.o libc.o + $(LD) $(LDFLAGS) -o $@ $^ $(LIBS) + +modules.elf: start.o modules.o libc.o + $(LD) $(LDFLAGS) -o $@ $^ $(LIBS) + +%.o: %.c + $(CC) $(CCFLAGS) -c -o $@ $^ + +%.o: %.S + $(CC) $(ASFLAGS) -c -o $@ $^ |