29 lines
729 B
Makefile
29 lines
729 B
Makefile
# -*- Makefile -*- for gettext-runtime/doc on VMS using the MMS utility
|
|
|
|
all :
|
|
write sys$output "Nothing to be done for 'all'."
|
|
|
|
install : all
|
|
write sys$output "Nothing else to be done for 'install'."
|
|
|
|
installdirs :
|
|
write sys$output "Nothing to be done for 'installdirs'."
|
|
|
|
uninstall :
|
|
write sys$output "Nothing to be done for 'uninstall'."
|
|
|
|
check :
|
|
write sys$output "Nothing to be done for 'check'."
|
|
|
|
mostlyclean : clean
|
|
write sys$output "Nothing else to be done for 'mostlyclean'."
|
|
|
|
clean :
|
|
write sys$output "Nothing to be done for 'clean'."
|
|
|
|
distclean : clean
|
|
write sys$output "Nothing else to be done for 'distclean'."
|
|
|
|
maintainer-clean : distclean
|
|
write sys$output "Nothing else to be done for 'maintainer-clean'."
|