diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2008-03-31 02:20:33 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2008-03-31 02:20:33 +0200 |
commit | e06f40890c40ed5798b88cd406c91870257b0bd0 (patch) | |
tree | 5132434f6f215a830d6f2c386ea4d42fb02a1b62 | |
parent | a317ba64b8fbf85707e7a4e1ecc6a420166b7c32 (diff) |
add new autoclean target
- after clean, you don't have to re-run configure
- after distclean, you should not have to re-run make prepare
- as a result, only the new autoclean target will remove files created
by make prepare
-rw-r--r-- | skype/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/skype/Makefile b/skype/Makefile index 808d8cab..3328b152 100644 --- a/skype/Makefile +++ b/skype/Makefile @@ -29,8 +29,10 @@ clean: rm -f skype.$(SHARED_EXT) distclean: clean - rm -rf autom4te.cache config.log config.mak config.status - rm -f configure install-sh aclocal.m4 + rm -f config.log config.mak config.status + +autoclean: distclean + rm -rf aclocal.m4 autom4te.cache configure install-sh dist: git archive --format=tar --prefix=bitlbee-skype-$(VERSION)/ HEAD | tar xf - |