diff options
-rw-r--r-- | sos/Makefile | 3 | ||||
-rw-r--r-- | sos/plugins/Makefile | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/sos/Makefile b/sos/Makefile index 8cdae373..6f71b799 100644 --- a/sos/Makefile +++ b/sos/Makefile @@ -6,6 +6,9 @@ PYSYSDIR := $(shell $(PYTHON) -c 'import sys; print sys.prefix') PYLIBDIR = $(PYSYSDIR)/lib/python$(PYVER) PKGDIR = $(PYLIBDIR)/site-packages/$(PACKAGE) +all: + echo "nada" + clean: rm -f *.pyc *.pyo *~ diff --git a/sos/plugins/Makefile b/sos/plugins/Makefile index d6439a3f..56b53d76 100644 --- a/sos/plugins/Makefile +++ b/sos/plugins/Makefile @@ -6,6 +6,9 @@ PYSYSDIR := $(shell $(PYTHON) -c 'import sys; print sys.prefix') PYLIBDIR = $(PYSYSDIR)/lib/python$(PYVER) PKGDIR = $(PYLIBDIR)/site-packages/$(PACKAGE)/plugins +all: + echo "nada" + clean: rm -f *.pyc *.pyo *~ |