home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a034 / 2.ddi / BUILTINS.MAK < prev    next >
Encoding:
Text File  |  1994-02-02  |  2.5 KB  |  73 lines

  1. # $Log:   /cms/ports.v/src/adk/make/builtins.mak,v  $
  2. #  
  3. #     Rev 1.1   04 Feb 1993 11:49:10   zouhair
  4. #      Dev    Change link option from -e to -E
  5. #  
  6. #     Rev 1.0   15 Jan 1993 17:08:12   burt
  7. #  #    Dev    Initial version [burt].
  8. #
  9. #  BUILTINS.MAK Makefile for dBASE Compiler for DOS v1.0
  10. #  (c) Copyright 1992 Borland International Inc.
  11. #
  12. #  --------------------------------------------------------------------------
  13. #  Search order of dBASE extensions used by the dBASE Compiler for DOS.
  14. .suffixes: .prg .dbo .fmt .fmo .frg .fro .lbg .lbo \
  15.            .qbe .qbo .upd .upo .asm .bin .exe
  16.  
  17. #  --------------------------------------------------------------------------
  18. #  Define macros for Compiler (BDC.EXE), Linker (BDL.EXE) and Assembler
  19. #  (TASM.EXE and TLINK.EXE) for LOAD and CALL binary files.
  20. ASM = TASM
  21. DBCOMP = BDC
  22. DBLINK = BDL
  23. LINK = TLINK
  24.  
  25. #  --------------------------------------------------------------------------
  26. #  NOTE: Other macros used in this file, AFLAGS, CFLAGS, DFLAGS and TFLAGS,
  27. #        (options for the assembler, dBASE compiler/linker, and TLINK) can 
  28. #        be defined in your .mak file or using MAKE's command line.
  29. #
  30. #        Refer to the MAKE section of the manual for more on macros.
  31.  
  32. #  --------------------------------------------------------------------------
  33. #  Define our implicit rules for compiling dBASE source files.
  34. #  File types are:
  35. #        Program Files        (.prg)  ==>  (.dbo)
  36. #        Format Files         (.fmt)  ==>  (.fmo)
  37. #        Report Forms         (.frg)  ==>  (.fro)
  38. #        Label Forms          (.lbg)  ==>  (.lbo)
  39. #        Query Files          (.qbe)  ==>  (.qbo)
  40. #        Update Query files   (.upd)  ==>  (.upo)
  41. .dbo.exe:
  42.       $(DBLINK) -E$@ $(DFLAGS) $**
  43.  
  44. .prg.dbo:
  45.       $(DBCOMP) -c $(CFLAGS) {$< }
  46.  
  47. .fmt.fmo:
  48.       $(DBCOMP) -c $(CFLAGS) {$< }
  49.  
  50. .frg.fro:
  51.       $(DBCOMP) -c $(CFLAGS) {$< }
  52.  
  53. .lbg.lbo:
  54.       $(DBCOMP) -c $(CFLAGS) {$< }
  55.  
  56. .qbe.qbo:
  57.       $(DBCOMP) -c $(CFLAGS) {$< }
  58.  
  59. .upd.upo:
  60.       $(DBCOMP) -c $(CFLAGS) {$< }
  61.  
  62. #  --------------------------------------------------------------------------
  63. #  Use Borland's Assembler for dBASE LOAD and CALL routines.  Refer to the
  64. #  dBASE Compiler Language Reference manual for more on the LOAD and CALL
  65. #  commands and the use of assembled binary files in dBASE.  Also refer to
  66. #  Borland's Assembler manual for more on assembly language, TASM and TLINK.
  67. #  Refer to the DOS manual for more on EXE2BIN.
  68. .asm.bin:
  69.       $(ASM) $(AFLAGS) $<
  70.       $(LINK) $(TFLAGS) $&.obj, $&.exe
  71.       EXE2BIN $&.exe $&.bin
  72.  
  73.