From be1b83d24aee03d29913957fdba40cf7a268e660 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 10 Oct 2007 14:55:14 -0700 Subject: [PATCH] owlinux.mak: don't clean things we won't be able to There won't be a Makefile in rdoff in particular, so trying to run "make clean" there is pointless. --- Mkfiles/owlinux.mak | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Mkfiles/owlinux.mak b/Mkfiles/owlinux.mak index 2afc0b2..fa4cd12 100644 --- a/Mkfiles/owlinux.mak +++ b/Mkfiles/owlinux.mak @@ -14,7 +14,8 @@ mandir = $(prefix)/man CC = wcl386 CFLAGS = -3 -bcl=$(TARGET) -ox -wx -ze -fpi BUILD_CFLAGS = $(CFLAGS) # -I$(srcdir)/inttypes -INTERNAL_CFLAGS = -I$(srcdir) -I. -DHAVE_SNPRINTF -DHAVE_VSNPRINTF +INTERNAL_CFLAGS = -I$(srcdir) -I. \ + -DHAVE_SNPRINTF -DHAVE_VSNPRINTF ALL_CFLAGS = $(BUILD_CFLAGS) $(INTERNAL_CFLAGS) LD = $(CC) LDFLAGS = $(ALL_CFLAGS) @@ -143,7 +144,7 @@ clean: -rm -f output/*.i -rm -f nasm$(X) -rm -f ndisasm$(X) - cd rdoff && $(MAKE) clean + # cd rdoff && $(MAKE) clean distclean: clean .SYMBOLIC -rm -f config.h @@ -161,13 +162,13 @@ distclean: clean .SYMBOLIC -rm -f test/*.$(O) -rm -f test/*.bin -rm -f/s autom4te*.cache - cd rdoff && $(MAKE) distclean + # cd rdoff && $(MAKE) distclean cleaner: clean .SYMBOLIC -rm -f $(PERLREQ) -rm -f *.man -rm -f nasm.spec - cd doc && $(MAKE) clean + # cd doc && $(MAKE) clean spotless: distclean cleaner .SYMBOLIC -rm -f doc/Makefile -- 2.7.4