"Jacob Gorm Hansen" <jacobg@xxxxxxx> 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
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|