home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / xbin21.zip / original.zip / makefile.tc < prev    next >
Makefile  |  1991-01-14  |  265b  |  10 lines

  1. #  xbin makefile for Turbo C
  2.  
  3. CL         = tcc
  4. DEBUGFLAGS = -k -N -r- -v -DDEBUG     # options for debugging
  5. OPTFLAGS   = -G -O -r -Z              # options for production
  6. CFLAGS     = -DMSDOS -ms $(OPTFLAGS)
  7.  
  8. xbin.exe: xbin.c
  9.       $(CL) $(CFLAGS) xbin.c
  10.