home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / xbin23.zip / MAKEFILE.MS < prev    next >
Text File  |  1991-01-13  |  260b  |  10 lines

  1. #  xbin makefile for Microsoft C
  2.  
  3. CL         = cl
  4. DEBUGFLAGS = -Od -Zi -DDEBUG      # options for debugging
  5. OPTFLAGS   = -Ox                  # options for production
  6. CFLAGS     = -DMSDOS -AS $(OPTFLAGS)
  7.  
  8. xbin.exe: xbin.c
  9.       $(CL) $(CFLAGS) xbin.c
  10.