diff options
Diffstat (limited to 'util/extensions/legacybios/Rules.make')
-rw-r--r-- | util/extensions/legacybios/Rules.make | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/util/extensions/legacybios/Rules.make b/util/extensions/legacybios/Rules.make deleted file mode 100644 index 8c63e14187..0000000000 --- a/util/extensions/legacybios/Rules.make +++ /dev/null @@ -1,17 +0,0 @@ -# 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" - - |