1# -*- Makefile -*- for libiconv/tests on VMS using the MMS utility
2
3#### Start of system configuration section. ####
4
5#### End of system configuration section. ####
6
7all :
8	write sys$output "Nothing to be done for 'all'."
9
10install : all
11	write sys$output "Nothing else to be done for 'install'."
12
13installdirs :
14	write sys$output "Nothing to be done for 'installdirs'."
15
16uninstall :
17	write sys$output "Nothing to be done for 'uninstall'."
18
19check :
20	write sys$output "Nothing to be done for 'check'."
21
22mostlyclean : clean
23	write sys$output "Nothing else to be done for 'mostlyclean'."
24
25clean :
26	write sys$output "Nothing to be done for 'clean'."
27
28distclean : clean
29	write sys$output "Nothing else to be done for 'distclean'."
30
31maintainer-clean : distclean
32	write sys$output "Nothing else to be done for 'maintainer-clean'."
33