mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-13 17:20:03 -04:00
95 lines
2.9 KiB
Makefile
95 lines
2.9 KiB
Makefile
# -*- Makefile -*- for gettext-runtime/lib on VMS using the MMS utility
|
|
|
|
#### Start of system configuration section. ####
|
|
|
|
# Programs used by "make":
|
|
|
|
CC = cc
|
|
|
|
# These flags affect binary compatibility. GNU gettext does not need them,
|
|
# but other packages do, and we need to be binary compatible with them.
|
|
ABIFLAGS = /name=(as_is,short) /float=ieee
|
|
|
|
WARN_CFLAGS = /warning
|
|
|
|
OPTIMFLAGS = /optimize
|
|
|
|
CFLAGS = $(ABIFLAGS) $(WARN_CFLAGS) $(OPTIMFLAGS)
|
|
DEFS = "VMS=1","HAVE_CONFIG_H=1"
|
|
|
|
INCLUDES = /include=([],[-],[-.intl],[-.-.gettext-tools.lib])
|
|
|
|
AR = library
|
|
AR_FLAGS = /create
|
|
|
|
LN = copy
|
|
RM = delete
|
|
|
|
#### End of system configuration section. ####
|
|
|
|
OBJECTS = basename.obj,closeout.obj,error.obj,fwriteerror.obj,getopt.obj,getopt1.obj,progname.obj,progreloc.obj,relocatable.obj,xmalloc.obj,xstrdup.obj
|
|
|
|
all : grt.olb
|
|
write sys$output "Nothing else to be done for 'all'."
|
|
|
|
basename.obj : [-.-.gettext-tools.lib]basename.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]basename.c
|
|
|
|
closeout.obj : [-.-.gettext-tools.lib]closeout.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]closeout.c
|
|
|
|
error.obj : [-.-.gettext-tools.lib]error.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]error.c
|
|
|
|
fwriteerror.obj : [-.-.gettext-tools.lib]fwriteerror.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]fwriteerror.c
|
|
|
|
getopt.obj : [-.-.gettext-tools.lib]getopt.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]getopt.c
|
|
|
|
getopt1.obj : [-.-.gettext-tools.lib]getopt1.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]getopt1.c
|
|
|
|
progname.obj : [-.-.gettext-tools.lib]progname.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]progname.c
|
|
|
|
progreloc.obj : [-.-.gettext-tools.lib]progreloc.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]progreloc.c
|
|
|
|
relocatable.obj : [-.-.gettext-tools.lib]relocatable.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]relocatable.c
|
|
|
|
xmalloc.obj : [-.-.gettext-tools.lib]xmalloc.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]xmalloc.c
|
|
|
|
xstrdup.obj : [-.-.gettext-tools.lib]xstrdup.c
|
|
$(CC) $(INCLUDES) $(CFLAGS) /define=($(DEFS)) [-.-.gettext-tools.lib]xstrdup.c
|
|
|
|
grt.olb : $(OBJECTS)
|
|
$(AR) $(AR_FLAGS) grt.olb $(OBJECTS)
|
|
|
|
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 :
|
|
$(RM) *.obj;*
|
|
$(RM) *.olb;*
|
|
|
|
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'."
|