home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / c / condor40.zip / CONDOR / Makefile next >
Makefile  |  1989-08-23  |  3KB  |  94 lines

  1. SOURCE=../../src
  2.  
  3. LIBS=xdr_lib util_lib condor_lib ckpt_lib h
  4. TOOLS=client standalone condor_tools
  5. PROGS=condor condor_collector condor_master condor_negotiator \
  6.     condor_q condor_rm condor_schedd condor_shadow condor_startd \
  7.     condor_starter condor_kbdd
  8.  
  9. ALL_PROGS = $(PROGS) $(XPROGS)
  10.  
  11. all: $(LIBS) $(ALL_PROGS) $(TOOLS)
  12.  
  13. everything: $(LIBS) $(ALL_PROGS) $(TOOLS)
  14.  
  15. always:
  16.     make -f Makefile.mach CheckMachType
  17.  
  18.  
  19. condor_lib: always
  20.     cd condor_lib; make -f ../Makefile.mach \
  21.             -f $(SOURCE)/condor_lib/Makefile $(MVARS) $(opt) $(OPT)
  22.  
  23. condor_collector: always
  24.     cd condor_collector; make -f ../Makefile.mach \
  25.             -f $(SOURCE)/condor_collector/Makefile $(MVARS) $(opt) $(OPT)
  26.  
  27. condor_negotiator: always
  28.     cd condor_negotiator; make -f ../Makefile.mach \
  29.             -f $(SOURCE)/condor_negotiator/Makefile $(MVARS) $(opt) $(OPT)
  30.  
  31. ckpt_lib: always
  32.     cd ckpt_lib; make -f ../Makefile.mach \
  33.             -f $(SOURCE)/ckpt_lib/Makefile $(MVARS) $(opt) $(OPT)
  34.  
  35. h: always
  36.     cd h; make -f ../Makefile.mach \
  37.             -f $(SOURCE)/h/Makefile $(MVARS) $(opt) $(OPT)
  38.  
  39. client: always
  40.     cd client; make -f ../Makefile.mach \
  41.             -f $(SOURCE)/client/Makefile $(MVARS) $(opt) $(OPT)
  42.  
  43. condor_schedd: always
  44.     cd condor_schedd; make -f ../Makefile.mach \
  45.             -f $(SOURCE)/condor_schedd/Makefile $(MVARS) $(opt) $(OPT)
  46.  
  47. standalone: always
  48.     cd standalone; make -f ../Makefile.mach \
  49.             -f $(SOURCE)/standalone/Makefile $(MVARS) $(opt) $(OPT)
  50.  
  51. condor: always
  52.     cd condor; make -f ../Makefile.mach \
  53.             -f $(SOURCE)/condor/Makefile $(MVARS) $(opt) $(OPT)
  54.  
  55. condor_q: always
  56.     cd condor_q; make -f ../Makefile.mach \
  57.             -f $(SOURCE)/condor_q/Makefile $(MVARS) $(opt) $(OPT)
  58.  
  59. condor_rm: always
  60.     cd condor_rm; make -f ../Makefile.mach \
  61.             -f $(SOURCE)/condor_rm/Makefile $(MVARS) $(opt) $(OPT)
  62.  
  63. condor_shadow: always
  64.     cd condor_shadow; make -f ../Makefile.mach \
  65.             -f $(SOURCE)/condor_shadow/Makefile $(MVARS) $(opt) $(OPT)
  66.  
  67. condor_kbdd: always
  68.     cd condor_kbdd; make -f ../Makefile.mach \
  69.                     -f $(SOURCE)/condor_kbdd/Makefile $(MVARS) $(opt) $(OPT)
  70.  
  71. condor_startd: always
  72.     cd condor_startd; make -f ../Makefile.mach \
  73.                     -f $(SOURCE)/condor_startd/Makefile $(MVARS) $(opt) $(OPT)
  74.  
  75. condor_starter: always
  76.     cd condor_starter; make -f ../Makefile.mach \
  77.                     -f $(SOURCE)/condor_starter/Makefile $(MVARS) $(opt) $(OPT)
  78.  
  79. condor_tools: always
  80.     cd condor_tools; make -f ../Makefile.mach \
  81.             -f $(SOURCE)/condor_tools/Makefile $(MVARS) $(opt) $(OPT)
  82.  
  83. util_lib: always
  84.     cd util_lib; make -f ../Makefile.mach \
  85.             -f $(SOURCE)/util_lib/Makefile $(MVARS) $(opt) $(OPT)
  86.  
  87. xdr_lib: always
  88.     cd xdr_lib; make -f ../Makefile.mach \
  89.             -f $(SOURCE)/xdr_lib/Makefile $(MVARS) $(opt) $(OPT)
  90.  
  91. condor_master: always
  92.     cd condor_master; make    -f ../Makefile.mach \
  93.             -f $(SOURCE)/condor_master/Makefile $(MVARS) $(opt) $(OPT)
  94.