Skip to content

Commit

Permalink
VAX needs all names in upper case, we don't bother with the case-sens…
Browse files Browse the repository at this point in the history
…itive

stuff.  On Alpha and I64, we do.  So, we create the case sensitive names
and then we will generate upper-case aliases.
  • Loading branch information
tesneddon committed Mar 13, 2013
1 parent 8baaa8e commit 64b8ed4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions descrip.mms
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,15 @@ SRCDIR = SYS$DISK:[]

OPT = .$(ARCH)_OPT

CFLAGS = $(CFLAGS)/NAME=AS_IS
.IFDEF __VAX__
CC = GCC
CFLAGS = $(CFLAGS)/OPT=2/SCAN=$(ETCDIR)CONFIG.H
CFLAGS = $(CFLAGS)/OPT=2/SCAN=$(ETCDIR)CONFIG.H/NAME=UPPER

{$(SRCDIR)}.C{$(BINDIR)}.OBJ :
$(CC)$(CFLAGS) $(MMS$SOURCE)
.ELSE
CFLAGS = $(CFLAGS)/WARN=DISABLE=(LONGEXTERN,EMPTYFILE) -
/FRIST_INCLUDE=$(ETCDIR)CONFIG.H/FLOAT=IEEE_FLOAT
/FRIST_INCLUDE=$(ETCDIR)CONFIG.H/FLOAT=IEEE_FLOAT/NAME=AS_IS

{$(SRCDIR)}.C{$(BINDIR)}.OBJ :
$(CC)$(CFLAGS) $(MMS$SOURCE)+SYS$LIBRARY:SYS$LIB_C/LIB
Expand Down

0 comments on commit 64b8ed4

Please sign in to comment.