diff options
author | Bill Nottingham <notting@redhat.com> | 1999-09-22 16:51:32 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-09-22 16:51:32 +0000 |
commit | 53d5b13e313b18ee55e6d241206a945bc830464b (patch) | |
tree | 2d4ec0ffa2350571b9182f49bd05e4988d64cab4 /isys | |
parent | efd19e6c043c4a38980996e3acd54da910b862c7 (diff) | |
download | anaconda-53d5b13e313b18ee55e6d241206a945bc830464b.tar.gz anaconda-53d5b13e313b18ee55e6d241206a945bc830464b.tar.xz anaconda-53d5b13e313b18ee55e6d241206a945bc830464b.zip |
fix make clean!
Diffstat (limited to 'isys')
-rw-r--r-- | isys/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/Makefile b/isys/Makefile index c90f523b7..8f5dcb808 100644 --- a/isys/Makefile +++ b/isys/Makefile @@ -15,7 +15,7 @@ _isys.so: isys.o $(OBJECTS) $(STATICLIBS) libisys.a: libisys.a($(OBJECTS) $(STATICOBJS)) clean: - rm -f *.o $(TARGET) $(OBJECTS) + rm -f *.o *.so *.a $(TARGET) $(OBJECTS) for d in $(SUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d clean; done install: all |