1 # -*- Makefile -*- for gettext-tools/libuniname on VMS using the MMS utility
3 #### Start of system configuration section. ####
5 # Programs used by "make":
9 # These flags affect binary compatibility. GNU gettext does not need them,
10 # but other packages do, and we need to be binary compatible with them.
11 ABIFLAGS = /name=(as_is,short) /float=ieee
13 WARN_CFLAGS = /warning
15 OPTIMFLAGS = /optimize
17 CFLAGS = $(ABIFLAGS) $(WARN_CFLAGS) $(OPTIMFLAGS)
18 DEFS = "VMS=1","HAVE_CONFIG_H=1"
20 INCLUDES = /include=([],[-],[-.lib])
28 #### End of system configuration section. ####
33 write sys$output "Nothing else to be done for 'all'."
35 uniname.obj : uniname.c
36 $(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) uniname.c
38 uniname.olb : $(OBJECTS)
39 $(AR) $(AR_FLAGS) uniname.olb $(OBJECTS)
42 write sys$output "Nothing else to be done for 'install'."
45 write sys$output "Nothing to be done for 'installdirs'."
48 write sys$output "Nothing to be done for 'uninstall'."
51 write sys$output "Nothing to be done for 'check'."
54 write sys$output "Nothing else to be done for 'mostlyclean'."
61 write sys$output "Nothing else to be done for 'distclean'."
63 maintainer-clean : distclean
64 write sys$output "Nothing else to be done for 'maintainer-clean'."