summaryrefslogtreecommitdiffstats
path: root/qemu/tests/multiboot/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/tests/multiboot/Makefile')
-rw-r--r--qemu/tests/multiboot/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/qemu/tests/multiboot/Makefile b/qemu/tests/multiboot/Makefile
deleted file mode 100644
index 36f01dc64..000000000
--- a/qemu/tests/multiboot/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-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 $@ $^