home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / xbin21.zip / original.zip / makefile.ms < prev    next >
Makefile  |  1991-04-17  |  449b  |  13 lines

  1. #  xbin makefile for Microsoft C 6.0
  2. #  - some modifications to compile for OS/2 as bound program
  3.  
  4. CL       = cl
  5. DFLAGS   = -Od -Zi -DDEBUG       # options for debugging
  6. OPTFLAGS = -Ox                   # options for production
  7. OS2FLAGS = -Fb -Lp               # options for OS/2 usage
  8. LFLAGS   = -link -E -NOD -PM:VIO # options for linker
  9. CFLAGS   = -DMSDOS -AS $(OPTFLAGS)
  10.  
  11. xbin.exe:
  12.       $(CL) $(CFLAGS) $(OS2FLAGS) xbin.c $(LFLAGS)
  13.