summaryrefslogtreecommitdiff
path: root/util/extensions/legacybios/Rules.make
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@openbios.org>2003-09-18 14:16:08 +0000
committerStefan Reinauer <stepan@openbios.org>2003-09-18 14:16:08 +0000
commitdcdbdfb46e7075515fef5be386e14c42463f7a5e (patch)
treeca43f548ddcb695d4843fe8a69a55e68ba325ca8 /util/extensions/legacybios/Rules.make
parent59549598c08d5bdcee01bfb91dd9d147edf9fee7 (diff)
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
Diffstat (limited to 'util/extensions/legacybios/Rules.make')
-rw-r--r--util/extensions/legacybios/Rules.make17
1 files changed, 17 insertions, 0 deletions
diff --git a/util/extensions/legacybios/Rules.make b/util/extensions/legacybios/Rules.make
new file mode 100644
index 0000000000..8c63e14187
--- /dev/null
+++ b/util/extensions/legacybios/Rules.make
@@ -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"
+
+