Fix make clean target to remove symlink to soname
authorDan Dennedy <dan@dennedy.org>
Fri, 15 May 2009 08:54:51 +0000 (01:54 -0700)
committerDan Dennedy <dan@dennedy.org>
Fri, 15 May 2009 08:54:51 +0000 (01:54 -0700)
Signed-off-by: Dan Dennedy <dan@dennedy.org>

src/melted++/Makefile
src/melted/Makefile
src/mvcp/Makefile

index 8696555..90cc3ee 100644 (file)
@@ -35,7 +35,7 @@ depend: $(SRCS)
        $(CXX) -MM $(CXXFLAGS) $^ 1>.depend
 
 clean:
-       $(RM) $(OBJS) $(TARGET) $(NAME)
+       $(RM) $(OBJS) $(TARGET) $(NAME) $(SONAME)
 
 distclean:     clean
 
index 3159f72..e350046 100644 (file)
@@ -54,7 +54,7 @@ distclean:    clean
                        rm -f .depend
 
 clean: 
-                       rm -f $(OBJS) $(TARGET) $(LIBNAME) $(LIBTARGET)
+                       rm -f $(OBJS) $(TARGET) $(LIBNAME) $(LIBTARGET) $(LIBSONAME)
 
 install:       all
        install -d "$(DESTDIR)$(bindir)"
index 4825766..d8f24af 100644 (file)
@@ -52,7 +52,7 @@ distclean:    clean
                rm -f .depend
 
 clean: 
-               rm -f $(OBJS) $(TARGET) $(NAME)
+               rm -f $(OBJS) $(TARGET) $(NAME) $(SONAME)
 
 install:       all
        install -m 755 $(TARGET) $(DESTDIR)$(libdir)