home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / amiga / vim46src.lha / vim-4.6 / src / xxd / Makefile.bcc < prev    next >
Encoding:
Makefile  |  1996-08-19  |  688 b   |  23 lines

  1. # Simple makefile for Borland C++ 4.0
  2. # 3.1 can NOT be used, it has problems with the fileno() define.
  3.  
  4. # Adjust the paths to your location of the borland C files
  5. BCCLOC  = e:\bc4
  6. CC    =   $(BCCLOC)\bin\bcc
  7. INC    = -I$(BCCLOC)\include
  8. LIB    = -L$(BCCLOC)\lib
  9.  
  10. # uncomment the next line for including debugging messages
  11. #DEBUG    = -DDEBUG
  12.  
  13. # The following compile options can be changed for better machines.
  14. #    replace -1- with -2 to produce code for a 80286 or higher
  15. #    replace -1- with -3 to produce code for a 80386 or higher
  16. #    add -v for source debugging
  17. OPTIMIZE= -1- -Ox
  18.  
  19. CFLAGS    = -A -mc -DMSDOS $(DEBUG) $(OPTIMIZE) $(INC) $(LIB)
  20.  
  21. xxd.exe: xxd.c
  22.     $(CC) $(CFLAGS) xxd.c
  23.