Makefile.bcc
上传用户:gddssl
上传日期:2007-01-06
资源大小:1003k
文件大小:1k
源码类别:

编辑器/阅读器

开发平台:

DOS

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