diff options
author | Brian Paul <brianp@vmware.com> | 2009-04-16 09:31:45 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-04-16 09:31:45 -0600 |
commit | 666702baec09f60f7e1eddd9f1dd65ee2e826abb (patch) | |
tree | 66e90329a76c3aaedcec4572465a82d6f18a85c3 /Makefile | |
parent | 0d0028e6df3542272ce833fec2e7af99d762fe8f (diff) |
mesa: add distclean target to top-level Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -37,6 +37,9 @@ realclean: clean -name depend -o -name depend.bak ')' -exec rm -f '{}' ';' +distclean: realclean + + install: @for dir in $(SUBDIRS) ; do \ if [ -d $$dir ] ; then \ @@ -45,7 +48,7 @@ install: done -.PHONY: default doxygen clean realclean install linux-directfb-install +.PHONY: default doxygen clean realclean distclean install linux-directfb-install # If there's no current configuration file $(TOP)/configs/current: |