From 326f97986e03e655b0c886c1998515b5e4c5093c Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sun, 28 Apr 2002 02:04:58 +0000 Subject: [PATCH] r1803: initial import --- Makefile.common | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile.common diff --git a/Makefile.common b/Makefile.common new file mode 100644 index 0000000..5f5413e --- /dev/null +++ b/Makefile.common @@ -0,0 +1,15 @@ +.PHONY: all clean +all: + +.PHONY: clean +clean: + rm -rf .bin + rm -f *.ufsl *.fsl *.fas *.x86f *.sparcf *.fasl *.err + rm -f *~ *.bak *.orig .#* + rm -f *.so *.a +ifneq ($(SUBDIRS)$(DOCSUBDIRS),) + set -e; for i in $(SUBDIRS) $(DOCSUBDIRS); do \ + $(MAKE) -C $$i $@; done +endif + +.SUFFIXES: # No default suffixes -- 2.34.1