comparison Makefile @ 18:bce77374e1e7 libavutil

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 314e61f57c42
children 56860d9c35c2
comparison
equal deleted inserted replaced
17:314e61f57c42 18:bce77374e1e7
48 $(CC) -MM $(CFLAGS) $^ 1>.depend 48 $(CC) -MM $(CFLAGS) $^ 1>.depend
49 49
50 dep: depend 50 dep: depend
51 51
52 clean: 52 clean:
53 rm -f *.o *.d *~ .depend $(LIB) $(SLIBNAME) *$(SLIBSUF) 53 rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll
54 54
55 distclean: clean 55 distclean: clean
56 rm -f Makefile.bak .depend 56 rm -f Makefile.bak .depend
57 57
58 58