diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-08-06 22:15:12 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-06 22:15:12 +0000 |
commit | bbdc0394ff9a3450b5a23a7699727436ca40cfb1 (patch) | |
tree | c704cc3760466fb43488f034fefb8d87b7b652f7 /Makefile.am | |
parent | 38a9b14965c797f6763abb4f8a8a06113711260f (diff) | |
download | curl-bbdc0394ff9a3450b5a23a7699727436ca40cfb1.tar.gz |
make an uninstall hook in the same manner we already did an install hook
as otherwise will make distcheck fail
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index e4805ab4a..54dc31c09 100644 --- a/Makefile.am +++ b/Makefile.am @@ -83,3 +83,8 @@ cygwinbin: install-data-hook: cd include && $(MAKE) install cd docs && $(MAKE) install + +# We extend the standard uninstall with a custom hook: +uninstall-hook: + cd include && $(MAKE) uninstall + cd docs && $(MAKE) uninstall |