coreboot-kgpe-d16/util/extensions/legacybios/Rules.make
Stefan Reinauer dcdbdfb46e 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
2003-09-18 14:16:08 +00:00

17 lines
358 B
Makefile

# 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"