home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / xbin21.zip / makefile < prev    next >
Makefile  |  1994-08-31  |  870b  |  22 lines

  1. #  xbin makefile for IBM CSET/2
  2. # ---------------------------------------------------------------------------
  3. # -G4   - optimize for 486 machines
  4. # -Gs+  - turn off stack probes
  5. # -O+   - optimize on
  6. # -Oi100 - inline everything less than 100 units
  7. # -Q    - turn off copyright
  8. # -N30  - stop after 30 errors
  9. # -W3   - warn on everything (see -W also)
  10. # -Gn-  - include default library requirements
  11. # ---------------------------------------------------------------------------
  12.  
  13. CC  = icc                        # Use the icc compiler
  14. ICC =                            # Disable environment settings
  15. OPTFLAGS  = -G4 -Gs+ -O+ -Oi100  # Optimization flags
  16. WARNFLAGS = -N30 -W3 -Wall+cmp-ext-got-ini-par-por-ppc-ppt-trd-uni-
  17. LFLAGS    = -B"/NOE" setargv.obj
  18. CFLAGS    = -Q $(OPTFLAGS) $(WARNFLAGS)
  19.  
  20. xbin.exe:
  21.       $(CC) -Fe$@ $(CFLAGS) xbin.c $(LFLAGS)
  22.