#  xbin makefile for IBM CSET/2
# ---------------------------------------------------------------------------
# -G4   - optimize for 486 machines
# -Gs+  - turn off stack probes
# -O+   - optimize on
# -Oi100 - inline everything less than 100 units
# -Q    - turn off copyright
# -N30  - stop after 30 errors
# -W3   - warn on everything (see -W also)
# -Gn-  - include default library requirements
# ---------------------------------------------------------------------------

CC  = icc                        # Use the icc compiler
ICC =                            # Disable environment settings
OPTFLAGS  = -G4 -Gs+ -O+ -Oi100  # Optimization flags
WARNFLAGS = -N30 -W3 -Wall+cmp-ext-got-ini-par-por-ppc-ppt-trd-uni-
LFLAGS    = -B"/NOE" setargv.obj
CFLAGS    = -Q $(OPTFLAGS) $(WARNFLAGS)

xbin.exe:
      $(CC) -Fe$@ $(CFLAGS) xbin.c $(LFLAGS)
