blob: a7d4c0d711f4312b49f25a05285c76064c68bbf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# -*- Makefile -*- for gettext-tools/projects on VMS using the MMS utility
#### Start of system configuration section. ####
#### End of system configuration section. ####
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'."
|