first shot of legacybios emulation.
does not work yet.. sorry :-( git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1119 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
17
util/extensions/legacybios/Rules.make
Normal file
17
util/extensions/legacybios/Rules.make
Normal file
@@ -0,0 +1,17 @@
|
||||
# tag: Makefile rules
|
||||
|
||||
VPATH := $(VPATH):.
|
||||
|
||||
.S.o:
|
||||
echo -n " assembling $<... "
|
||||
$(CC) -c -nostdlib $(INCLUDES) $(CFLAGS) $< -o $(BUILDDIR)/$@ && \
|
||||
echo -e " \t\tok" || \
|
||||
echo -e " \t\tfailed"
|
||||
|
||||
.c.o:
|
||||
echo -n " compiling $<... "
|
||||
$(CC) -c $(CFLAGS) $(INCLUDES) $< -o $(BUILDDIR)/$@ && \
|
||||
echo -e " \t\tok" || \
|
||||
echo -e " \t\failed"
|
||||
|
||||
|
Reference in New Issue
Block a user