include makeinit.vms TARGETS = vms all: $(TARGETS) mit:: gmake -f makefile.vms "-C" mit $(MAKE_DEFS) vms:: gmake -f makefile.vms "-C" vms $(MAKE_DEFS) $(OBJLIB): $(OBJS) @if f$$search("$@") .eqs. "" then library /create $@ library /replace /log $@ $? clean: @gmake -f makefile.vms "-C" mit clean @gmake -f makefile.vms "-C" vms clean help: @$(ECHO) " gmake -? - Displays general Gmake help for using Gmake from the command line." @$(ECHO) " gmake help - Displays help for using/typing gmake in this directory." @$(ECHO) "" @$(ECHO) " gmake - Builds everything on ALPHA from the current directory down." @$(ECHO) " gmake ""DEBUG=1"" - Builds everything on ALPHA with DEBUG" @$(ECHO) "" @$(ECHO) " gmake ""VAX=1"" - Builds everything on VAX from the current directory down." @$(ECHO) " gmake ""VAX=1"" ""DEBUG=1"" - Builds everything on VAX with DEBUG" @$(ECHO) "" @$(ECHO) " gmake ""IA64=1"" - Builds everything on Itanium from the current directory down." @$(ECHO) " gmake ""IA64=1"" ""DEBUG=1"" - Builds everything on Itanium with DEBUG" @$(ECHO) "" @$(ECHO) " gmake vms - Builds the original VMS examples" @$(ECHO) " gmake vms ""DEBUG=1""- Builds original VMS examples with DEBUG" @$(ECHO) "" @$(ECHO) " gmake mit - Builds the MIT examples" @$(ECHO) " gmake mit ""DEBUG=1""- Builds the MIT examples with DEBUG" @$(ECHO) "" @$(ECHO) " gmake clean - Cleans the entire tree below this current directory"