From mboxrd@z Thu Jan 1 00:00:00 1970 From: ramsdell@mitre.org (John D. Ramsdell) Subject: Re: [PATCH] Integrating applications into Mini-OS Date: 15 May 2006 11:09:10 -0400 Message-ID: References: <1147697197.11888.12.camel@localhost.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Jacob Gorm Hansen Cc: xen-devel@lists.xensource.com, Ian Campbell List-Id: xen-devel@lists.xenproject.org "Jacob Gorm Hansen" writes: > New version incorporating most of your changes to the Makefile > attached. Opps. I just noticed you took one line too much of my Makefile patch. This part -OBJS := $(TARGET_ARCH).o -OBJS += $(patsubst %.c,%.o,$(wildcard *.c)) +HEAD := $(patsubst %.S,%.o,$(wildcard *$(TARGET_ARCH).S)) +OBJS := $(patsubst %.c,%.o,$(wildcard *.c)) should be replaced with -OBJS := $(TARGET_ARCH).o -OBJS += $(patsubst %.c,%.o,$(wildcard *.c)) +HEAD := $(TARGET_ARCH).o +OBJS := $(patsubst %.c,%.o,$(wildcard *.c)) as with your scheme, I no longer have to add my assembly routine that provides setjmp and longjmp into the Mini-OS source tree. John