Mercurial > libavcodec.hg
diff libpostproc/Makefile @ 3048:986716310195 libavcodec
Don't use 'rm -f *$(SLIBSUF)' in a clean rule, $(SLIBSUF) might be empty.
Remove all possible shared libs suffixes instead.
| author | diego |
|---|---|
| date | Sun, 15 Jan 2006 00:28:36 +0000 |
| parents | 1127b4455bec |
| children | d084a83f2117 |
line wrap: on
line diff
--- a/libpostproc/Makefile Sat Jan 14 18:17:19 2006 +0000 +++ b/libpostproc/Makefile Sun Jan 15 00:28:36 2006 +0000 @@ -25,10 +25,10 @@ all: $(SWSLIB) $(LIB) $(SLIBNAME) clean: - rm -f *.o *.a *~ *$(SLIBSUF) $(LIB) $(SLIBNAME) + rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll -distclean: - rm -f Makefile.bak *.o *.a *~ *$(SLIBSUF) .depend +distclean: clean + rm -f Makefile.bak .depend dep: depend
