diff options
author | Bill Nottingham <notting@redhat.com> | 2000-01-03 23:51:35 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-01-03 23:51:35 +0000 |
commit | 1c7c0542d783fb65824db412594a365fe88832e0 (patch) | |
tree | b1d82678741208d7bf20a9dfb2bf98278e588b57 | |
parent | d7a204dc78f05ee3eb53367dda3a35dac13820e5 (diff) | |
download | anaconda-1c7c0542d783fb65824db412594a365fe88832e0.tar.gz anaconda-1c7c0542d783fb65824db412594a365fe88832e0.tar.xz anaconda-1c7c0542d783fb65824db412594a365fe88832e0.zip |
make make clean cleaner
-rw-r--r-- | gnome-map/Makefile | 2 | ||||
-rw-r--r-- | isys/Makefile | 2 | ||||
-rw-r--r-- | iw/Makefile | 4 | ||||
-rw-r--r-- | loader/Makefile | 3 | ||||
-rw-r--r-- | textw/Makefile | 3 |
5 files changed, 12 insertions, 2 deletions
diff --git a/gnome-map/Makefile b/gnome-map/Makefile index b9da1d714..c3e6eb76f 100644 --- a/gnome-map/Makefile +++ b/gnome-map/Makefile @@ -19,4 +19,4 @@ timezonemapmodule.so: gnome-map.o gnome-canvas-dot.o timezonemapmodule.o gnome-m gcc -g -o timezonemapmodule.so -shared gnome-map.o gnome-canvas-dot.o timezonemapmodule.o timezones.o $(LDFLAGS) clean: - rm -f *.so *.o *~ + rm -f gglobe-canvas *.so *.o *~ diff --git a/isys/Makefile b/isys/Makefile index 097ee4b31..cc8df6a5f 100644 --- a/isys/Makefile +++ b/isys/Makefile @@ -27,7 +27,7 @@ _silo.so: silo.c libisys.a: libisys.a($(OBJECTS) $(STATICOBJS)) clean: - rm -f *.o *.so *.a $(TARGET) $(OBJECTS) + rm -f *.o *.so *.a *.pyc $(TARGET) $(OBJECTS) for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d clean; done install: all diff --git a/iw/Makefile b/iw/Makefile index 95f6785e2..89cab4655 100644 --- a/iw/Makefile +++ b/iw/Makefile @@ -7,3 +7,7 @@ install: mkdir -p $(DESTDIR)/$(PYTHONLIBDIR)/iw cp -a *.py $(DESTDIR)/$(PYTHONLIBDIR)/iw ../py-compile --basedir $(DESTDIR)/$(PYTHONLIBDIR)/iw $(DESTDIR)/$(PYTHONLIBDIR)/iw/*.py + +clean: + rm -f *.o *.so *.pyc + diff --git a/loader/Makefile b/loader/Makefile index e932aef57..a4627d0d9 100644 --- a/loader/Makefile +++ b/loader/Makefile @@ -156,6 +156,9 @@ init: init.o $(MINILIBC) clean: rm -f *.o .depend *~ loader-local loader-network loader.old loader-pcmcia probe modprobe \ loader.po loader.tr tr/*.tr loader init + for n in $(DIRS); do \ + (cd $$n; make clean) \ + done depend: $(CPP) $(CFLAGS) -DHAVE_CONFIG_H -M $(SOURCES) > .depend diff --git a/textw/Makefile b/textw/Makefile index 2ac4f5eb6..7c8e62483 100644 --- a/textw/Makefile +++ b/textw/Makefile @@ -7,3 +7,6 @@ install: mkdir -p $(DESTDIR)/$(PYTHONLIBDIR)/textw cp -a *.py $(DESTDIR)/$(PYTHONLIBDIR)/textw ../py-compile --basedir $(DESTDIR)/$(PYTHONLIBDIR)/textw $(DESTDIR)/$(PYTHONLIBDIR)/textw/*.py + +clean: + rm -f *.o *.so *.pyc |