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

编辑器/阅读器

开发平台:

DOS

  1. # Simple makefile for Borland C++ 3.1
  2. # 4.0 can also be used, although the executable will be much bigger!
  3. SOURCES = entry.c get.c main.c options.c parse.c read.c sort.c
  4. # Adjust the paths to your location of the borland C files
  5. BCCLOC  = c:borlandc
  6. CC = $(BCCLOC)binbcc
  7. INC = -I$(BCCLOC)include
  8. LIB = -L$(BCCLOC)lib
  9. # Add this file for wildcard expansion (does NOT work with 4.0!)
  10. #EXTRA   =   $(BCCLOC)libwildargs.obj
  11. # The following compile options can be changed for better machines.
  12. # replace -1- with -2 to produce code for a 80286 or higher
  13. # replace -1- with -3 to produce code for a 80386 or higher
  14. # add -v for source debugging
  15. OPTIMIZE= -1- -Ox
  16. CFLAGS = -DMSDOS -mc -w-ccc -w-par -w-pia -w-rch -w-sus $(INC)
  17. LFLAGS = $(LIB) $(EXTRA)
  18. ctags.exe: $(SOURCES) respfile
  19. $(CC) $(OPTIMIZE) -e$@ @respfile
  20. debug: dctags.exe
  21. dctags.exe: $(SOURCES) respfile debug.c
  22. $(CC) -DDEBUG -v -e$@ @respfile debug.c
  23. respfile: makefile.bcc
  24. echo $(CFLAGS) > $@
  25. echo $(LFLAGS) >> $@
  26. echo $(SOURCES) >> $@
  27. clean:
  28. del *.exe
  29. del *.obj
  30. del respfile
  31. del tags