1
1

Adding install-exec-hook and uninstall-local targets so that

make install does not barf when WANT_DEPRECATED_EXECUTABLE_NAMES
is diasabled.

This commit was SVN r296.
Этот коммит содержится в:
Prabhanjan Kambadur 2004-01-12 08:08:20 +00:00
родитель 115e4dd62d
Коммит e8cf7b3816

Просмотреть файл

@ -122,4 +122,13 @@ uninstall-local:
$(DESTDIR)$(bindir)/hcp \
$(DESTDIR)$(bindir)/hf77
endif
#
# Adding this to make sure that make install does not fail.
# install-exec-hook needs to be defined or else make install
# fails quoting that there is not target called
# install-exec-hook if WANT_DEPRECATED_EXECUTABLE_NAMES is
# false.
else
install-exec-hook:
uninstall-local:
endif