home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Pascal / BPASCAL.700 / D12 / GREPDLL.ZIP / MAKEFILE < prev    next >
Encoding:
Text File  |  1992-10-01  |  1.1 KB  |  62 lines

  1. .AUTODEPEND
  2.  
  3. # Translator Definitions -------------------------------------------
  4.  
  5. CC = bcc +REGEXP.CFG
  6. TLINK = tlink
  7. LIBPATH = C:\BC\LIB
  8. INCLUDEPATH = C:\BC\INCLUDE;C:\BP\SOURCE
  9.  
  10.  
  11. # Implicit Rules ---------------------------------------------------
  12.  
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. # List Macros ------------------------------------------------------
  17.  
  18. OBJS =  \
  19.  regexp.obj \
  20.  regexdll.obj
  21.  
  22. # Explicit Rules ---------------------------------------------------
  23.  
  24. regexp.dll: regexp.cfg $(OBJS) regexp.res
  25.   $(TLINK) /x/c/P-/Twd/L$(LIBPATH) @&&|
  26. c0dl.obj+
  27. regexp.obj+
  28. regexdll.obj
  29. regexp.dll
  30.         # no map file
  31. mathwl.lib+
  32. import.lib+
  33. cwl.lib
  34. regexp.def
  35. |
  36.   RC  regexp.res regexp.dll
  37.   IMPLIB REGEXP.LIB REGEXP.DLL
  38.  
  39. # Individual File Dependencies -------------------------------------
  40.  
  41. regexp.obj: regexp.cfg regexp.c 
  42.  
  43. regexdll.obj: regexp.cfg regexdll.c 
  44.  
  45. regexp.res: regexp.cfg regexp.rc 
  46.     RC -R -I$(INCLUDEPATH) -FO regexp.res REGEXP.RC
  47.  
  48. # Compiler Configuration File --------------------------------------
  49. regexp.cfg: makefile
  50.   copy &&|
  51. -ml!
  52. -WD
  53. -vi-
  54. -weas
  55. -wpre
  56. -w-pro
  57. -I$(INCLUDEPATH)
  58. -L$(LIBPATH)
  59. | regexp.cfg
  60.  
  61.  
  62.