From: H. Peter Anvin Date: Wed, 10 Oct 2007 21:55:14 +0000 (-0700) Subject: owlinux.mak: don't clean things we won't be able to X-Git-Tag: nasm-2.11.05~1881 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=be1b83d24aee03d29913957fdba40cf7a268e660;p=platform%2Fupstream%2Fnasm.git 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. --- 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