- workaround to build MetalSVM on marc008

git-svn-id: http://svn.lfbs.rwth-aachen.de/svn/scc/trunk/MetalSVM@11 315a16e6-25f9-4109-90ae-ca3045a26c18
This commit is contained in:
stefan 2010-08-02 09:50:12 +00:00
parent 3b38ec302e
commit c0cdc2b283
2 changed files with 3 additions and 3 deletions

View file

@ -13,7 +13,7 @@ export AR = ar
export ARFLAGS = rsv
export RM = rm -rf
LD = ld
LDFLAGS = -T link.ld -e start
LDFLAGS = -T link.ld
SUBDIRS = lib kernel mm arch #lwip

View file

@ -1,5 +1,5 @@
C_source = gdt.c idt.c isrs.c irq.c vga.c kb.c timer.c
ASM_source = entry.asm schedule.asm
ASM_source = schedule.asm
OBJS += $(patsubst %.c, %.o, $(filter %.c, $(C_source)))
OBJS += $(patsubst %.asm, %.o, $(filter %.asm, $(ASM_source)))
@ -14,7 +14,7 @@ OBJS += $(patsubst %.asm, %.o, $(filter %.asm, $(ASM_source)))
default:
$(MAKE) all
all: $(OBJS)
all: $(OBJS) entry.o
$(MAKE) $(LIBNAME)
$(LIBNAME): $(OBJS) entry.o