From 334b27b5570c8cd582d4ecc3e2283ab4800f2148 Mon Sep 17 00:00:00 2001 From: stefan Date: Tue, 3 Aug 2010 12:10:47 +0000 Subject: [PATCH] - minor update git-svn-id: http://svn.lfbs.rwth-aachen.de/svn/scc/trunk/MetalSVM@24 315a16e6-25f9-4109-90ae-ca3045a26c18 --- Makefile.example | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile.example b/Makefile.example index 183e0e6a..979a1503 100644 --- a/Makefile.example +++ b/Makefile.example @@ -2,6 +2,7 @@ export TOPDIR = /home/stefan/SCC/MetalSVM export ARCH = x86 NAME = metalsvm.bin export LIBNAME = $(TOPDIR)/libmetalsvm.a +export LIBLWIP = $(TOPDIR)/liblwip.a export MAKE = make export ASM = nasm @@ -15,17 +16,17 @@ export RM = rm -rf LD = ld LDFLAGS = -T link.ld -SUBDIRS = lib kernel mm arch #lwip +SUBDIRS = lib kernel mm arch lwip default: $(MAKE) all all: for i in $(SUBDIRS); do $(MAKE) -C $$i all; done - $(LD) $(LDFLAGS) -o $(NAME) $(TOPDIR)/arch/$(ARCH)/kernel/entry.o $(LIBNAME) + $(LD) $(LDFLAGS) -o $(NAME) $(TOPDIR)/arch/$(ARCH)/kernel/entry.o $(LIBNAME) $(LIBLWIP) clean: - $(RM) $(NAME) $(LIBNAME) *~ + $(RM) $(NAME) $(LIBNAME) $(LIBLWIP) *~ for i in $(SUBDIRS); do $(MAKE) -C $$i clean; done depend: