home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / emerald / emrldsys.lha / Kernel / Em / makefile < prev    next >
Encoding:
Makefile  |  1990-09-11  |  52.1 KB  |  1,281 lines

  1. #
  2. # Makefile for the Emerald Kernel, February 1988.
  3. #
  4. # Derived from the make file for Eden kernels.
  5. #
  6. # ROOTDIR is the root of the Emerald files on your particular machine,
  7. # e.g., at the UW: /usr/em, at the Univ. of Copenhagen: /eric/em
  8. #
  9. ROOTDIR=/scratch/eric/emerald/
  10. # EMSITE currently does not matter.
  11. EMSITE=DIKU
  12. # INSTALLIN is the file name where the compiled kernel goes.
  13. INSTALLIN=${ROOTDIR}/Kernel/Em/em
  14. # options for compilation are in CFLAGS and are
  15. # composed of STDOPTS, USRCOPTS, and its own set of options.
  16. STDOPTS=-D${EMSITE}
  17. #
  18. # Define USRCOPTS at make time
  19. #
  20. # CPNEWLOG    ?
  21. # BSD        ?
  22. # CHECKPOINT    ?
  23. # xkernel    use xkernel   << NB must also set DEFINEXKERNEL
  24. # xsimul    but simulate it
  25. USRCOPTS=-g -DCPNEWLOG -DBSD -DCHECKPOINT # -Dxkernel -Dxsimul
  26. # use one or the other of the following two
  27. #DEFINEXKERNEL='define(xkernel,1)'
  28. DEFIINEXKERNEL=
  29. #
  30. # If not running at Arizona, or you don't want an MLP-compatible kernel then
  31. # comment out these lines.
  32. # Note (Eric Jul, Aug. 1989): Norm says MLP never will work.
  33. # MLP_CFLAGS = -DINCLUDE_MLP
  34. # MLP_SRC  = ../MLP/mlp.c
  35. # MLP_OBJS = mlp.o
  36. # MLP_LIBS = /usr/mlp/v2/mlpx/lib/mlp.a /usr/mlp/v2/mlpx/lib/stream.a
  37.  
  38. CFLAGS= ${USRCOPTS} -I${ROOTDIR} -I${ROOTDIR}/Kernel/h ${STDOPTS} ${MLP_CFLAGS}
  39. # MAKEDEP is the program used to extract the dependencies from the
  40. # .c files used.
  41. MAKEDEP= ${ROOTDIR}/bin/makedep
  42. MACHINE=sun
  43.  
  44. .DEFAULT:
  45.     @echo "cannot do " $@
  46.  
  47. # STDLIBS are the libraries needed.
  48. STDLIBS=  -ldbm -lc $(MLP_LIBS)
  49. #STDLIBS=  -ldbm -lX -lc $(MLP_LIBS)
  50.  
  51. # A list of the object files.
  52. OBJS=bufferCode.o etherCode.o fifoCode.o handlerCode.o keyedCode.o \
  53.     msgCode.o timerCode.o traceMsg.o hotsAccess.o \
  54.     kTaskQ.o sunQueInst.o hotsUpDown.o bootKernel.o main.o \
  55.     mainLoop.o OID.o kOps.o invoke.o locate.o mobility.o\
  56.     checkPoint.o cPDBM.o cPLog.o recover.o replicant.o \
  57.     emPause.o releaseSigs.o setHandler.o kSigStructs.o \
  58.     kmdMM.o kmdCode.o errMsg.o getlnn.o \
  59.     myalloc.o emalloc.o install.o stats.o kstub.o ecstub.o \
  60.     mallocStats.o errMsgs.o \
  61.     loadCode.o readDoto.o transDoto.o \
  62.     fakeIO.o lmCode.o node.o assert.o map.o item.o expandArray.o \
  63.     timing.o utils.o ecutils.o sigio.o unixIO.o stream.o request.o \
  64.     measure.o kConform.o badsignal.o avg.o set.o gc.o map96.o \
  65.     XInterface.o xkUtils.o ndbm.o $(MLP_OBJS)
  66.  
  67. USRLIBS=
  68.  
  69. CFILES=../MsgOps/bufferCode.c ../MsgOps/etherCode.c \
  70.     ../MsgOps/fifoCode.c ../MsgOps/handlerCode.c \
  71.     ../MsgOps/keyedCode.c ../Em/msgCode.c \
  72.     ../MsgOps/timerCode.c ../MsgOps/traceMsg.c \
  73.     ../DataStructs/hotsAccess.c ../DataStructs/kTaskQ.c \
  74.     ../DataStructs/sunQueInst.c ../Em/hotsUpDown.c \
  75.     ../BootCode/bootKernel.c ../Em/main.c ../Em/mainLoop.c \
  76.     ../Em/OID.c ../Em/kOps.c ../Em/invoke.c ../Em/locate.c \
  77.     ../Em/mobility.c ../Checkpoint/checkPoint.c \
  78.     ../Checkpoint/cPDBM.c ../Checkpoint/cPLog.c \
  79.     ../Checkpoint/recover.c ../Checkpoint/replicant.c \
  80.     ../SigHandling/releaseSigs.c \
  81.     ../SigHandling/setHandler.c ../SigHandling/kSigStructs.c \
  82.     ../KmdOps/kmdMM.c ../KmdOps/kmdCode.c \
  83.     ../Utils/errMsg.c ../Utils/getlnn.c \
  84.     ../EmMalloc/myalloc.c \
  85.     ../EmMalloc/emalloc.c ../EmMalloc/install.c \
  86.     ../EmMalloc/stats.c ../Em/mallocStats.c \
  87.     ../../ErrCodes/errMsgs.c ../FileLoad/loadCode.c \
  88.     ../FileLoad/readDoto.c ../FileLoad/transDoto.c \
  89.     ../Em/fakeIO.c ../Em/lmCode.c ../Em/node.c ../Em/assert.c \
  90.     ../Em/map.c ../Em/item.c ../Em/expandArray.c \
  91.     ../Em/timing.c ../Em/utils.c ../Em/ecutils.c \
  92.     ../Em/sigio.c ../Em/unixIO.c ../Em/stream.c \
  93.     ../Em/request.c ../Em/measure.c ../Em/kConform.c \
  94.     ../Em/badsignal.c ../Em/avg.c ../Em/set.c ../Em/gc.c \
  95.     ../Em/map96.c ../X/XInterface.c ../Em/xkUtils.c \
  96.     ../Em/ndbm.c $(MLP_SRC)
  97.  
  98. CEFILES=
  99. INCLUDES=
  100.  
  101. # GREP = fgrep -i
  102. GREP = egrep
  103.  
  104. em: makefile ${OBJS}
  105.     @echo loading em for site ${EMSITE}
  106.     @rm -f em core
  107.     @cc -o em ${USRCOPTS} ${OBJS} ${USRLIBS} ${STDLIBS}
  108.     @ls -l em
  109.     @size em
  110.  
  111.  
  112. findethernet: findethernet2
  113.     @echo -n Probable interface name 'is '
  114.     @netstat -i | head -2 | tail -1 \
  115.     | awk '{print $$1}'
  116.  
  117. findethernet2:
  118.     @echo -n Probable interface name for host `hostname` 'is '
  119.     @netstat -i | fgrep `hostname` \
  120.     | awk '{print $$1}'
  121.  
  122. install: em distfile.Sun distfile.Vax
  123.     mv -f ${INSTALLIN} ${INSTALLIN}_o
  124.     mv em ${INSTALLIN}
  125.     -if [ ! "${QRDREMOTEQ}" ]; then /usr/ucb/rdist; \
  126.     rm -f distfile.Sun distfile.Vax; fi;
  127.  
  128.  
  129. depend:
  130.     @echo "Looking in .c files"
  131.     @${MAKEDEP} -l -I${ROOTDIR} -I${ROOTDIR}/Kernel/h -N ${CFILES} | \
  132.     awk ' { if ($$1 != prev) { print rec; rec = $$0; prev = $$1; } \
  133.         else { if (length(rec $$2) > 78) { print rec; rec = $$0; } \
  134.                else rec = rec " " $$2 } } \
  135.           END { print rec } ' > makedep
  136.     @${MAKEDEP} -l -I${ROOTDIR} -I${ROOTDIR}/Kernel/h -CE -N ${CEFILES} | \
  137.     awk ' { if ($$1 != prev) { print rec; rec = $$0; prev = $$1; } \
  138.         else { if (length(rec $$2) > 78) { print rec; rec = $$0; } \
  139.                else rec = rec " " $$2 } } \
  140.           END { print rec } ' >> makedep
  141.     @echo '$$r makedep' >>eddep
  142.     @echo '/^# DO NOT DELETE THIS LINE/+1,$$d' >>eddep
  143.     @echo '$$r makedep' >>eddep
  144.     @echo 'w' >>eddep
  145.     @echo "Updating makefile"
  146.     @cp makefile makefile.bak
  147.     @ed - makefile < eddep
  148.     @rm eddep makedep
  149.  
  150. distfile.Sun: ${ROOTDIR}/Adm/dfile.master rdist.files
  151.     cp ${ROOTDIR}/Adm/dfile.master ./QQdistmaster
  152.     /lib/cpp -P -C -DSUN QQdistmaster >distfile.Sun
  153.     rm -f QQdistmaster
  154.     -if [ -f /bin/sun ]; then cp distfile.Sun distfile; fi;
  155.  
  156. distfile.Vax: ${ROOTDIR}/Adm/dfile.master rdist.files
  157.     cp ${ROOTDIR}/Adm/dfile.master ./QQdistmaster
  158.     /lib/cpp -P -C -DVAX QQdistmaster >distfile.Vax
  159.     rm -f QQdistmaster
  160.     -if [ ! -f /bin/sun ]; then cp distfile.Vax distfile; fi;
  161.  
  162. tags:    ${CFILES} ../h/*.h
  163.     @-if [ -f ${ROOTDIR}/bin/ctags ]; then ${ROOTDIR}/bin/ctags -tw ${CFILES} ../h/*.h; else ctags -tw ${CFILES} ../h/*.h; fi;
  164.  
  165. mtags:    ${CFILES} ../h/*.h
  166.     @mtags -twlv -Dxkernel $(CFLAGS) -I/usr/xkernel/share -I/usr/xkernel/simul -I/usr/xkernel/pc ${CFILES}
  167.  
  168. cxref:
  169.     cxref -c $(CFLAGS) $(CFILES) -o em.cxref
  170.  
  171. sources:
  172.     @echo ${CFILES}
  173.  
  174. grep:
  175.     @-${GREP} -n -e "${G}" ${CFILES}
  176.  
  177. # grep:
  178. #     @-${GREP} -n -e "${G}" ${CFILES} | \
  179. #     sed 's/^\([^:]*\):\([^:]*\):/"\1", line \2:/'
  180. #     @sleep 1
  181.  
  182. lint:    ${CFILES}
  183.     @lint -zhbxu ${STDOPTS} -I${ROOTDIR} -I${ROOTDIR}/Kernel/h ${CFILES} | sed \
  184.          -e '/warning: z__z redefinition hides earlier one/d' \
  185.          -e '/possible pointer alignment problem/d' \
  186.          -e '/MMTraceMsg/d' -e '/KMDPrint/d' -e '/DebugMsg/d' \
  187.          -e '/KMDSet/d' \
  188.          -e '/MMDefineMsgHandler/d' \
  189.          -e '/_doprnt/d' \
  190.          -e '/bind, arg. 2 used incon/d' \
  191.          -e '/zzIndexzz/d' \
  192.          -e '/inet_ntoa, arg. 1/d' \
  193.          -e '/ntohs, arg. 1 used incon/d' \
  194.          -e '/readdir, arg. 1 used incon/d' \
  195.          -e '/opendir value used incon/d' \
  196.          -e '/etext value declared incon/d' \
  197.          -e '/ctime, arg. 1 used incon/d' \
  198.          -e '/time, arg. 1 used incon/d' \
  199.          -e '/time value used incon/d' \
  200.          -e '/time value declared incon/d' \
  201.          -e '/sprintf returns value/d' \
  202.          -e '/gettimeofday returns value/d' \
  203.          -e '/free, arg. 1 used incon/d' \
  204.          -e '/install_alloc, arg./d' \
  205.          -e '/sigstack/d' \
  206.          -e '/sigvec/d' \
  207.          -e '/gethostname, arg. 2 used incon/d' \
  208.          -e '/MMSetMicroTimer/d' \
  209.          -e '/MMSetTimer/d' \
  210.          -e '/MMGetFromList, arg. 3/d' \
  211.          -e '/MMGetFromList, arg. 4/d' \
  212.          -e '/MMBuildMsg, arg./d' \
  213.          -e '/MMAllocateMsg, arg. 2 used incon/d' \
  214.          -e '/MMDeallocateMsg/d' \
  215.          -e '/MMSendMsg, arg. 1 used incon/d' \
  216.          -e '/CreateArray, arg. 1 used inconsis/d' \
  217.          -e '/DiscardArray, arg. 1 used inconsi/d' \
  218.          -e '/EnsureArray, arg. 1 used inconsis/d' \
  219.          -e '/ExpandArray, arg. 1 used inconsis/d' \
  220.          -e '/KernelCheatingCreate, arg. 4 used incon/d' \
  221.          -e '/LMStartMsg, arg. 2 used incon/d' \
  222.          -e '/LMStartMsg, arg. 3 used incon/d' \
  223.          -e '/ErrMsg/d' -e '/QueueTask/d' \
  224.          -e '/abort multiply declared/d' \
  225.          -e '/calloc multiply declared/d' \
  226.          -e '/free multiply declared/d' \
  227.          -e '/sigvec, arg./d' \
  228.          -e '/sbrk value used incon/d' \
  229.          -e '/realloc multiply declared/d' \
  230.          -e '/bcopy/d' -e '/sendto/d' \
  231.          -e '/PutEdenMsg, arg./d' \
  232.          -e '/union iovec never defined/d' \
  233.          -e '/warning: unsigned comparison with 0/d' \
  234.          -e '/constant argument to NOT/d' \
  235.          -e '/warning: constant in conditional context/d' \
  236.          -e '/(.*):/s/^\([^(]*\)(\([^)]*\)):/"\1", line \2:/' \
  237.          -e 's/::  \([a-zA-Z-_.]*\)(\([0-9]*\))/:: file "\1", line \2/'
  238.     @sleep 1
  239.  
  240. clean:    cleanup
  241.     @rm -f *.ckp *.o em clean
  242.  
  243. cleanup:
  244.     @rm -f *.bak *.log cleanup .emacs_[0-9]*
  245.  
  246. bufferCode.o: ../MsgOps/bufferCode.c
  247.     ${CC} -c ${CFLAGS} ../MsgOps/bufferCode.c
  248.  
  249. etherCode.o: ../MsgOps/etherCode.c
  250.     ${CC} -c ${CFLAGS} ../MsgOps/etherCode.c
  251.  
  252. fifoCode.o: ../MsgOps/fifoCode.c
  253.     ${CC} -c ${CFLAGS} ../MsgOps/fifoCode.c
  254.  
  255. handlerCode.o: ../MsgOps/handlerCode.c
  256.     ${CC} -c ${CFLAGS} ../MsgOps/handlerCode.c
  257.  
  258. keyedCode.o: ../MsgOps/keyedCode.c
  259.     ${CC} -c ${CFLAGS} ../MsgOps/keyedCode.c
  260.  
  261. msgCode.o: ../Em/msgCode.c
  262.     ${CC} -c ${CFLAGS} ../Em/msgCode.c
  263.  
  264. portCode.o: ../MsgOps/portCode.c
  265.     ${CC} -c ${CFLAGS} ../MsgOps/portCode.c
  266.  
  267. timerCode.o: ../MsgOps/timerCode.c
  268.     ${CC} -c ${CFLAGS} ../MsgOps/timerCode.c
  269.  
  270. traceMsg.o: ../MsgOps/traceMsg.c
  271.     ${CC} -c ${CFLAGS} ../MsgOps/traceMsg.c
  272.  
  273. hotsAccess.o: ../DataStructs/hotsAccess.c
  274.     ${CC} -c ${CFLAGS} ../DataStructs/hotsAccess.c
  275.  
  276. kTaskQ.o: ../DataStructs/kTaskQ.c
  277.     ${CC} -c ${CFLAGS} ../DataStructs/kTaskQ.c
  278.  
  279. sunQueInst.o: ../DataStructs/sunQueInst.c
  280.     ${CC} -c ${CFLAGS} ../DataStructs/sunQueInst.c
  281.  
  282. hotsUpDown.o: ../Em/hotsUpDown.c
  283.     ${CC} -c ${CFLAGS} ../Em/hotsUpDown.c
  284.  
  285. bootKernel.o: ../BootCode/bootKernel.c
  286.     ${CC} -c ${CFLAGS} ../BootCode/bootKernel.c
  287.  
  288. main.o: ../Em/main.c
  289.     ${CC} -c ${CFLAGS} ../Em/main.c
  290.  
  291. mainLoop.o: ../Em/mainLoop.c
  292.     ${CC} -c ${CFLAGS} ../Em/mainLoop.c
  293.  
  294. OID.o: ../Em/OID.c
  295.     ${CC} -c ${CFLAGS} ../Em/OID.c
  296.  
  297. kOps.o: ../Em/kOps.c ../Em/ementryext.h
  298.     ${CC} -c ${CFLAGS} ../Em/kOps.c
  299.  
  300. invoke.o: ../Em/invoke.c
  301.     ${CC} -c ${CFLAGS} ../Em/invoke.c
  302.  
  303. locate.o: ../Em/locate.c
  304.     ${CC} -c ${CFLAGS} ../Em/locate.c
  305.  
  306. mobility.o: ../Em/mobility.c
  307.     ${CC} -c ${CFLAGS} ../Em/mobility.c
  308.  
  309. checkPoint.o: ../Checkpoint/checkPoint.c
  310.     ${CC} -c ${CFLAGS} ../Checkpoint/checkPoint.c
  311.  
  312. cPDBM.o: ../Checkpoint/cPDBM.c
  313.     ${CC} -c ${CFLAGS} ../Checkpoint/cPDBM.c
  314.  
  315. cPLog.o: ../Checkpoint/cPLog.c
  316.     ${CC} -c ${CFLAGS} ../Checkpoint/cPLog.c
  317.  
  318. replicant.o: ../Checkpoint/replicant.c ../h/replicant.h
  319.     $(CC) -c ${CFLAGS} ../Checkpoint/replicant.c
  320.  
  321. recover.o: ../Checkpoint/recover.c
  322.     ${CC} -c ${CFLAGS} ../Checkpoint/recover.c
  323.  
  324. emPause.o: ../SigHandling/emPause.ca
  325.     cp ../SigHandling/emPause.ca ../SigHandling/emPause.c
  326.     ${CC} -E ${CFLAGS} ../SigHandling/emPause.c >emPause.s
  327.     ${AS} -o emPause.o emPause.s
  328.     rm -f emPause.s ../SigHandling/emPause.c
  329.  
  330. releaseSigs.o: ../SigHandling/releaseSigs.c
  331.     ${CC} -c ${CFLAGS} ../SigHandling/releaseSigs.c
  332.  
  333. setHandler.o: ../SigHandling/setHandler.c
  334.     ${CC} -c ${CFLAGS} ../SigHandling/setHandler.c
  335.  
  336. kSigStructs.o: ../SigHandling/kSigStructs.c
  337.     ${CC} -c ${CFLAGS} ../SigHandling/kSigStructs.c
  338.  
  339. kmdMM.o: ../KmdOps/kmdMM.c
  340.     ${CC} -c ${CFLAGS} ../KmdOps/kmdMM.c
  341.  
  342. kmdCode.o: ../KmdOps/kmdCode.c
  343.     ${CC} -c ${CFLAGS} ../KmdOps/kmdCode.c
  344.  
  345. errMsg.o: ../Utils/errMsg.c
  346.     ${CC} -c ${CFLAGS} ../Utils/errMsg.c
  347.  
  348. getlnn.o: ../Utils/getlnn.c
  349.     ${CC} -c ${CFLAGS} ../Utils/getlnn.c
  350.  
  351. myalloc.o: ../EmMalloc/myalloc.c
  352.     ${CC} -c ${CFLAGS} ../EmMalloc/myalloc.c
  353.  
  354. emalloc.o: ../EmMalloc/emalloc.c
  355.     ${CC} -c ${CFLAGS} ../EmMalloc/emalloc.c
  356.  
  357. install.o: ../EmMalloc/install.c
  358.     ${CC} -c ${CFLAGS} ../EmMalloc/install.c
  359.  
  360. stats.o: ../EmMalloc/stats.c
  361.     ${CC} -c ${CFLAGS} ../EmMalloc/stats.c
  362.  
  363. mallocStats.o: ../Em/mallocStats.c
  364.     ${CC} -c ${CFLAGS} ../Em/mallocStats.c
  365.  
  366. timerVals.o: ../Utils/timerVals.c
  367.     ${CC} -c ${CFLAGS} ../Utils/timerVals.c
  368.  
  369. ../h/consts.h:    ../h/emTypes.h ../h/consts.c
  370.     cd ../h ; make consts.h
  371.  
  372. ../Em/ementryset.c ../Em/ementryext.h:    kstub.4s ecstub.4s
  373.     cd ../Em ; make -f makeementry
  374.  
  375. definexkernel: makefile
  376.     echo ${DEFINEXKERNEL} > definexkernel
  377.     
  378. # definexkernel contains a conditional compilation flag for xkernel
  379. kstub.4s:    ../Em/${MACHINE}.kstub.4s definexkernel
  380.     rm -f kstub.4s
  381.     cp ../Em/${MACHINE}.kstub.4s kstub.4s
  382.  
  383. # definexkernel has no other purpose than to ensure execution
  384. ecstub.4s:    ../Em/${MACHINE}.ecstub.4s definexkernel
  385.     rm -f ecstub.4s
  386.     cp ../Em/${MACHINE}.ecstub.4s ecstub.4s
  387.  
  388. kstub.o:     kstub.4s ../h/${MACHINE}.regdefs.h ../h/consts.h
  389.     m4 ${M4FLAGS} kstub.4s | sed -e 's/\/\*.*\*\///' > kstub.s
  390.     as -o kstub.o kstub.s
  391.     rm -f kstub.s
  392.  
  393. ecstub.o:     ecstub.4s ../h/${MACHINE}.regdefs.h ../h/consts.h
  394.     m4 ecstub.4s | sed -e 's/\/\*.*\*\///' > ecstub.s
  395.     as -o ecstub.o ecstub.s
  396.     rm -f ecstub.s
  397.  
  398. errMsgs.o:    ../../ErrCodes/errMsgs.c ../h/errMsgs.h
  399.     ${CC} -c ${CFLAGS} ../../ErrCodes/errMsgs.c
  400.  
  401. loadCode.o:    ../FileLoad/loadCode.c
  402.     ${CC} -c ${CFLAGS} ../FileLoad/loadCode.c
  403.  
  404. readDoto.o:    ../FileLoad/readDoto.c
  405.     ${CC} -c ${CFLAGS} ../FileLoad/readDoto.c
  406.  
  407. transDoto.o:    ../FileLoad/transDoto.c
  408.     ${CC} -c ${CFLAGS} ../FileLoad/transDoto.c
  409.  
  410. fakeIO.o:    ../Em/fakeIO.c
  411.     ${CC} -c ${CFLAGS} ../Em/fakeIO.c
  412.  
  413. lmCode.o:    ../Em/lmCode.c
  414.     ${CC} -c ${CFLAGS} ../Em/lmCode.c
  415.  
  416. node.o:    ../Em/node.c
  417.     ${CC} -c ${CFLAGS} ../Em/node.c
  418.  
  419. assert.o:    ../Em/assert.c
  420.     ${CC} -c ${CFLAGS} ../Em/assert.c
  421.  
  422. map.o:    ../Em/map.c
  423.     ${CC} -c ${CFLAGS} ../Em/map.c
  424.  
  425. item.o:    ../Em/item.c
  426.     ${CC} -c ${CFLAGS} ../Em/item.c
  427.  
  428. expandArray.o:    ../Em/expandArray.c
  429.     ${CC} -c ${CFLAGS} ../Em/expandArray.c
  430.  
  431. timing.o:    ../Em/timing.c
  432.     ${CC} -c ${CFLAGS} ../Em/timing.c
  433.  
  434. utils.o:    ../Em/utils.c
  435.     ${CC} -c ${CFLAGS} ../Em/utils.c
  436.  
  437. ecutils.o:    ../Em/ecutils.c
  438.     ${CC} -c ${CFLAGS} ../Em/ecutils.c
  439.  
  440. sigio.o:    ../Em/sigio.c
  441.     ${CC} -c ${CFLAGS} ../Em/sigio.c
  442.  
  443. unixIO.o:    ../Em/unixIO.c
  444.     ${CC} -c ${CFLAGS} ../Em/unixIO.c
  445.  
  446. stream.o:    ../Em/stream.c
  447.     ${CC} -c ${CFLAGS} ../Em/stream.c
  448.  
  449. request.o:    ../Em/request.c
  450.     ${CC} -c ${CFLAGS} ../Em/request.c
  451.  
  452. measure.o:    ../Em/measure.c
  453.     ${CC} -c ${CFLAGS} ../Em/measure.c
  454.  
  455. kConform.o:    ../Em/kConform.c
  456.     ${CC} -c ${CFLAGS} ../Em/kConform.c
  457.  
  458. badsignal.o:    ../Em/badsignal.c
  459.     ${CC} -c ${CFLAGS} ../Em/badsignal.c
  460.  
  461. avg.o:    ../Em/avg.c
  462.     ${CC} -c ${CFLAGS} ../Em/avg.c
  463.  
  464. set.o:    ../Em/set.c
  465.     ${CC} -c ${CFLAGS} ../Em/set.c
  466.  
  467. gc.o:    ../Em/gc.c
  468.     ${CC} -c ${CFLAGS} ../Em/gc.c
  469.  
  470. map96.o:    ../Em/map96.c
  471.     ${CC} -c ${CFLAGS} ../Em/map96.c
  472.  
  473. XInterface.o:    ../X/XInterface.c
  474.     ${CC} -c ${CFLAGS} ../X/XInterface.c
  475.  
  476. xkUtils.o:    ../Em/xkUtils.c
  477.     ${CC} -c ${CFLAGS} ../Em/xkUtils.c
  478.  
  479. mlp.o:    ../MLP/mlp.c
  480.     ${CC} -c ${CFLAGS} ../MLP/mlp.c
  481.  
  482. ndbm.o:    ../Em/ndbm.c ../Em/ndbm.h
  483.     @-if (ar t /lib/libc.a|egrep ndbm>/dev/null); then\
  484.         cp ndbm.c ndbm.bak; \
  485.         rm -f ndbm.c; \
  486.         cp /dev/null ndbm.c; \
  487.     else \
  488.         echo "doesn't exist">/dev/null; \
  489.     fi
  490.     ${CC} -c ${CFLAGS} ndbm.c;
  491.     @-mv -f ndbm.bak ndbm.c
  492.  
  493. # DO NOT DELETE THIS LINE -- make depend uses it
  494.  
  495. ndbm.o: ../Em/ndbm.h
  496.  
  497. xkUtils.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  498. xkUtils.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  499. xkUtils.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  500. xkUtils.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  501.  
  502. XInterface.o: /scratch/eric/emerald//Kernel/h/system.h
  503. XInterface.o: /scratch/eric/emerald//Kernel/h/macros.h
  504. XInterface.o: /scratch/eric/emerald//Kernel/h/assert.h
  505. XInterface.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  506. XInterface.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  507. XInterface.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  508. XInterface.o: /scratch/eric/emerald//Kernel/h/builtins.h
  509. XInterface.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  510. XInterface.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
  511. XInterface.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  512. XInterface.o: /scratch/eric/emerald//Kernel/h/sigio.h
  513.  
  514. map96.o: /scratch/eric/emerald//Kernel/h/assert.h
  515. map96.o: /scratch/eric/emerald//Kernel/h/system.h
  516. map96.o: /scratch/eric/emerald//Kernel/h/map96.h
  517.  
  518. gc.o: /scratch/eric/emerald//Kernel/h/system.h
  519. gc.o: /scratch/eric/emerald//Kernel/h/assert.h
  520. gc.o: /scratch/eric/emerald//Kernel/h/macros.h
  521. gc.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  522. gc.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  523. gc.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  524. gc.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  525. gc.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  526. gc.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  527. gc.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  528. gc.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  529. gc.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  530. gc.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  531. gc.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  532. gc.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  533. gc.o: /scratch/eric/emerald//Kernel/h/map.h
  534. gc.o: /scratch/eric/emerald//Kernel/h/set.h
  535. gc.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  536. gc.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  537. gc.o: /scratch/eric/emerald//Kernel/h/utils.h
  538. gc.o: /scratch/eric/emerald//Kernel/h/builtins.h
  539.  
  540. set.o: /scratch/eric/emerald//Kernel/h/assert.h
  541. set.o: /scratch/eric/emerald//Kernel/h/system.h
  542. set.o: /scratch/eric/emerald//Kernel/h/set.h
  543.  
  544. avg.o: /scratch/eric/emerald//Kernel/h/system.h
  545. avg.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  546.  
  547. badsignal.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  548. badsignal.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  549. badsignal.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  550. badsignal.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  551. badsignal.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  552. badsignal.o: /scratch/eric/emerald//Kernel/h/utils.h
  553. badsignal.o: /scratch/eric/emerald//Kernel/h/system.h
  554.  
  555. kConform.o: /scratch/eric/emerald//Kernel/h/system.h
  556. kConform.o: /scratch/eric/emerald//Kernel/h/assert.h
  557. kConform.o: /scratch/eric/emerald//Kernel/h/map.h
  558. kConform.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  559. kConform.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  560. kConform.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  561. kConform.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  562. kConform.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  563. kConform.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  564. kConform.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  565. kConform.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  566. kConform.o: /scratch/eric/emerald//Kernel/h/builtins.h
  567. kConform.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  568. kConform.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  569. kConform.o: /scratch/eric/emerald//Kernel/h/set.h
  570. kConform.o: /scratch/eric/emerald//Kernel/h/utils.h
  571.  
  572. measure.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  573. measure.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  574.  
  575. request.o: /scratch/eric/emerald//Kernel/h/system.h
  576. request.o: /scratch/eric/emerald//Kernel/h/macros.h
  577. request.o: /scratch/eric/emerald//Kernel/h/assert.h
  578. request.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  579. request.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  580. request.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  581. request.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  582. request.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  583. request.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  584. request.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  585. request.o: /scratch/eric/emerald//Kernel/h/map.h
  586. request.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  587. request.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  588. request.o: /scratch/eric/emerald//Kernel/h/set.h
  589.  
  590. stream.o: /scratch/eric/emerald//Kernel/h/assert.h
  591. stream.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  592. stream.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  593. stream.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  594. stream.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  595. stream.o: /scratch/eric/emerald//Kernel/h/builtins.h
  596. stream.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
  597. stream.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  598. stream.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  599. stream.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  600. stream.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  601. stream.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  602. stream.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  603. stream.o: /scratch/eric/emerald//Kernel/h/map.h
  604. stream.o: /scratch/eric/emerald//Kernel/h/set.h
  605.  
  606. unixIO.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  607. unixIO.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  608. unixIO.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  609. unixIO.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  610.  
  611. sigio.o: /scratch/eric/emerald//Kernel/h/system.h
  612. sigio.o: /scratch/eric/emerald//Kernel/h/assert.h
  613. sigio.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  614. sigio.o: /scratch/eric/emerald//Kernel/h/sigio.h
  615. sigio.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  616.  
  617. ecutils.o: /scratch/eric/emerald//Kernel/h/system.h
  618. ecutils.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  619. ecutils.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  620. ecutils.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  621. ecutils.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
  622. ecutils.o: /scratch/eric/emerald//Kernel/h/assert.h
  623. ecutils.o: /scratch/eric/emerald//Kernel/h/timeops.h
  624. ecutils.o: /scratch/eric/emerald//Kernel/h/consts.h
  625.  
  626. utils.o: /scratch/eric/emerald//Kernel/h/system.h
  627. utils.o: /scratch/eric/emerald//Kernel/h/assert.h
  628. utils.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  629. utils.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  630. utils.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  631. utils.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  632. utils.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  633. utils.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  634. utils.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  635. utils.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  636. utils.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  637. utils.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  638. utils.o: /scratch/eric/emerald//Kernel/h/map.h
  639. utils.o: /scratch/eric/emerald//Kernel/h/set.h
  640. utils.o: /scratch/eric/emerald//Kernel/h/consts.h
  641. utils.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  642.  
  643. timing.o: /scratch/eric/emerald//Kernel/h/assert.h
  644. timing.o: /scratch/eric/emerald//Kernel/h/system.h
  645. timing.o: /scratch/eric/emerald//Kernel/h/macros.h
  646. timing.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  647. timing.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  648. timing.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  649. timing.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  650. timing.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  651. timing.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  652. timing.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  653. timing.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  654. timing.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  655. timing.o: /scratch/eric/emerald//Kernel/h/emCodes.h
  656. timing.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  657. timing.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  658. timing.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  659. timing.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  660. timing.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  661. timing.o: /scratch/eric/emerald//Kernel/h/map.h
  662. timing.o: /scratch/eric/emerald//Kernel/h/set.h
  663. timing.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
  664. timing.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  665. timing.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  666. timing.o: /scratch/eric/emerald//Kernel/h/timeops.h
  667. timing.o: /scratch/eric/emerald//Kernel/h/utils.h
  668.  
  669. expandArray.o: /scratch/eric/emerald//Kernel/h/system.h
  670. expandArray.o: /scratch/eric/emerald//Kernel/h/assert.h
  671. expandArray.o: /scratch/eric/emerald//Kernel/h/expandArray.h
  672.  
  673. item.o: /scratch/eric/emerald//Kernel/h/assert.h
  674. item.o: /scratch/eric/emerald//Kernel/h/system.h
  675. item.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  676. item.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  677. item.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  678. item.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  679. item.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  680. item.o: /scratch/eric/emerald//Kernel/h/emCodes.h
  681. item.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  682. item.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  683. item.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  684. item.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  685. item.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  686. item.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  687. item.o: /scratch/eric/emerald//Kernel/h/map.h
  688. item.o: /scratch/eric/emerald//Kernel/h/set.h
  689. item.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
  690. item.o: /scratch/eric/emerald//Kernel/h/utils.h
  691.  
  692. map.o: /scratch/eric/emerald//Kernel/h/assert.h
  693. map.o: /scratch/eric/emerald//Kernel/h/system.h
  694. map.o: /scratch/eric/emerald//Kernel/h/map.h
  695.  
  696. assert.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  697. assert.o: /scratch/eric/emerald//Kernel/h/system.h
  698.  
  699. node.o: /scratch/eric/emerald//Kernel/h/system.h
  700. node.o: /scratch/eric/emerald//Kernel/h/assert.h
  701. node.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  702. node.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  703. node.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  704. node.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  705. node.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  706. node.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  707. node.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  708. node.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  709. node.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  710. node.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
  711. node.o: /scratch/eric/emerald//Kernel/h/timeops.h
  712. node.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  713. node.o: /scratch/eric/emerald//Kernel/h/consts.h
  714. node.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  715. node.o: /scratch/eric/emerald//Kernel/h/builtins.h
  716. node.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  717. node.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  718. node.o: /scratch/eric/emerald//Kernel/h/map.h
  719. node.o: /scratch/eric/emerald//Kernel/h/set.h
  720. node.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  721. node.o: /scratch/eric/emerald//Kernel/h/utils.h
  722. node.o: /scratch/eric/emerald//Kernel/h/macros.h
  723.  
  724. lmCode.o: /scratch/eric/emerald//Kernel/h/assert.h
  725. lmCode.o: /scratch/eric/emerald//Kernel/h/macros.h
  726. lmCode.o: /scratch/eric/emerald//Kernel/h/system.h
  727. lmCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  728. lmCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  729. lmCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  730. lmCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  731. lmCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  732. lmCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  733. lmCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  734. lmCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  735. lmCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  736. lmCode.o: /scratch/eric/emerald//Kernel/h/unixCodes.h
  737. lmCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
  738. lmCode.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  739. lmCode.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  740. lmCode.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  741. lmCode.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
  742. lmCode.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  743. lmCode.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  744.  
  745. fakeIO.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  746. fakeIO.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  747. fakeIO.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  748. fakeIO.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  749.  
  750. transDoto.o: /scratch/eric/emerald//Kernel/h/assert.h
  751. transDoto.o: /scratch/eric/emerald//Kernel/h/system.h
  752. transDoto.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  753. transDoto.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  754. transDoto.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  755. transDoto.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  756. transDoto.o: /scratch/eric/emerald//Kernel/h/consts.h
  757.  
  758. readDoto.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  759. readDoto.o: /scratch/eric/emerald//Kernel/h/system.h
  760. readDoto.o: /scratch/eric/emerald//Kernel/h/assert.h
  761. readDoto.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  762. readDoto.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  763. readDoto.o: /scratch/eric/emerald//Kernel/h/map.h
  764.  
  765. loadCode.o: /scratch/eric/emerald//Kernel/h/system.h
  766. loadCode.o: /scratch/eric/emerald//Kernel/h/macros.h
  767. loadCode.o: /scratch/eric/emerald//Kernel/h/assert.h
  768. loadCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  769. loadCode.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  770. loadCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  771. loadCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  772. loadCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  773. loadCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  774. loadCode.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  775. loadCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  776. loadCode.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  777. loadCode.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  778. loadCode.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  779. loadCode.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  780. loadCode.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  781. loadCode.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  782. loadCode.o: /scratch/eric/emerald//Kernel/h/map.h
  783. loadCode.o: /scratch/eric/emerald//Kernel/h/set.h
  784. loadCode.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
  785. loadCode.o: /scratch/eric/emerald//Kernel/h/emCodes.h
  786. loadCode.o: /scratch/eric/emerald//Kernel/h/map96.h
  787. loadCode.o: /scratch/eric/emerald//Kernel/h/sigio.h
  788. loadCode.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
  789. loadCode.o: /scratch/eric/emerald//Kernel/h/consts.h
  790. loadCode.o: /scratch/eric/emerald//Kernel/h/builtins.h
  791. loadCode.o: /scratch/eric/emerald//Kernel/h/utils.h
  792.  
  793. errMsgs.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  794. errMsgs.o: /scratch/eric/emerald//Kernel/h/system.h
  795.  
  796. mallocStats.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  797. mallocStats.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  798.  
  799. emalloc.o: /scratch/eric/emerald//Kernel/h/assert.h
  800. emalloc.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  801. emalloc.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  802. emalloc.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  803. emalloc.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  804. emalloc.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  805. emalloc.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  806. emalloc.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  807. emalloc.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  808. emalloc.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  809. emalloc.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  810. emalloc.o: /scratch/eric/emerald//Kernel/h/map.h
  811. emalloc.o: /scratch/eric/emerald//Kernel/h/set.h
  812. emalloc.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  813. emalloc.o: /scratch/eric/emerald//Kernel/h/system.h
  814.  
  815. getlnn.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  816.  
  817. errMsg.o: /scratch/eric/emerald//Kernel/h/system.h
  818. errMsg.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  819. errMsg.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  820. errMsg.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  821. errMsg.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  822. errMsg.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  823. errMsg.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  824. errMsg.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  825. errMsg.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  826. errMsg.o: /scratch/eric/emerald//Kernel/h/unixCodes.h
  827. errMsg.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
  828. errMsg.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  829. errMsg.o: /scratch/eric/emerald//Kernel/h/kmdDefs.h
  830. errMsg.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  831.  
  832. kmdCode.o: /scratch/eric/emerald//Kernel/h/system.h
  833. kmdCode.o: /scratch/eric/emerald//Kernel/h/expandArray.h
  834. kmdCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  835. kmdCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  836. kmdCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  837. kmdCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  838. kmdCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  839. kmdCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  840. kmdCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  841. kmdCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  842. kmdCode.o: /scratch/eric/emerald//Kernel/h/unixCodes.h
  843. kmdCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
  844. kmdCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  845. kmdCode.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  846. kmdCode.o: /scratch/eric/emerald//Kernel/h/kmdDefs.h
  847. kmdCode.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  848. kmdCode.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  849. kmdCode.o: /scratch/eric/emerald//Kernel/h/sigio.h
  850. kmdCode.o: /scratch/eric/emerald//Kernel/h/map.h
  851. kmdCode.o: /scratch/eric/emerald//Kernel/h/emstream.h
  852.  
  853. kmdMM.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  854. kmdMM.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  855. kmdMM.o: /scratch/eric/emerald//Kernel/h/unixCodes.h
  856. kmdMM.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  857. kmdMM.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  858. kmdMM.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  859. kmdMM.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  860. kmdMM.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  861. kmdMM.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  862. kmdMM.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  863. kmdMM.o: /scratch/eric/emerald//Kernel/h/kmdDefs.h
  864.  
  865. kSigStructs.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  866. kSigStructs.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  867.  
  868. setHandler.o: /scratch/eric/emerald//Kernel/h/system.h
  869. setHandler.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  870. setHandler.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  871. setHandler.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  872.  
  873. releaseSigs.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  874. releaseSigs.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  875. releaseSigs.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  876.  
  877. replicant.o: /scratch/eric/emerald//Kernel/h/ndbm.h
  878. replicant.o: /scratch/eric/emerald//Kernel/h/system.h
  879. replicant.o: /scratch/eric/emerald//Kernel/h/assert.h
  880. replicant.o: /scratch/eric/emerald//Kernel/h/macros.h
  881. replicant.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  882. replicant.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  883. replicant.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  884. replicant.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  885. replicant.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  886. replicant.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  887. replicant.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  888. replicant.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  889. replicant.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  890. replicant.o: /scratch/eric/emerald//Kernel/h/emCodes.h
  891. replicant.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  892. replicant.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  893. replicant.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  894. replicant.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  895. replicant.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  896. replicant.o: /scratch/eric/emerald//Kernel/h/map.h
  897. replicant.o: /scratch/eric/emerald//Kernel/h/set.h
  898. replicant.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
  899. replicant.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  900. replicant.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  901. replicant.o: /scratch/eric/emerald//Kernel/h/expandArray.h
  902. replicant.o: /scratch/eric/emerald//Kernel/h/consts.h
  903. replicant.o: /scratch/eric/emerald//Kernel/h/utils.h
  904. replicant.o: /scratch/eric/emerald//Kernel/h/replicant.h
  905. replicant.o: /scratch/eric/emerald//Kernel/h/cPLog.h
  906.  
  907. recover.o: /scratch/eric/emerald//Kernel/h/system.h
  908. recover.o: /scratch/eric/emerald//Kernel/h/assert.h
  909. recover.o: /scratch/eric/emerald//Kernel/h/macros.h
  910. recover.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  911. recover.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  912. recover.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  913. recover.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  914. recover.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  915. recover.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  916. recover.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  917. recover.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  918. recover.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  919. recover.o: /scratch/eric/emerald//Kernel/h/emCodes.h
  920. recover.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  921. recover.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  922. recover.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  923. recover.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  924. recover.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  925. recover.o: /scratch/eric/emerald//Kernel/h/map.h
  926. recover.o: /scratch/eric/emerald//Kernel/h/set.h
  927. recover.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
  928. recover.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  929. recover.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  930. recover.o: /scratch/eric/emerald//Kernel/h/consts.h
  931. recover.o: /scratch/eric/emerald//Kernel/h/utils.h
  932. recover.o: /scratch/eric/emerald//Kernel/h/cPLog.h
  933. recover.o: /scratch/eric/emerald//Kernel/h/replicant.h
  934.  
  935. cPLog.o: /scratch/eric/emerald//Kernel/h/ndbm.h
  936. cPLog.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  937. cPLog.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  938. cPLog.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  939. cPLog.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  940. cPLog.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  941. cPLog.o: /scratch/eric/emerald//Kernel/h/cPLog.h
  942. cPLog.o: /scratch/eric/emerald//Kernel/h/cPDBM.h
  943. cPLog.o: /scratch/eric/emerald//Kernel/h/replicant.h
  944.  
  945. cPDBM.o: /scratch/eric/emerald//Kernel/h/ndbm.h
  946. cPDBM.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  947. cPDBM.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  948. cPDBM.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  949. cPDBM.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  950. cPDBM.o: /scratch/eric/emerald//Kernel/h/cPDBM.h
  951. cPDBM.o: /scratch/eric/emerald//Kernel/h/cPLog.h
  952.  
  953. checkPoint.o: /scratch/eric/emerald//Kernel/h/ndbm.h
  954. checkPoint.o: /scratch/eric/emerald//Kernel/h/system.h
  955. checkPoint.o: /scratch/eric/emerald//Kernel/h/assert.h
  956. checkPoint.o: /scratch/eric/emerald//Kernel/h/macros.h
  957. checkPoint.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  958. checkPoint.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  959. checkPoint.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  960. checkPoint.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  961. checkPoint.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  962. checkPoint.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  963. checkPoint.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  964. checkPoint.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  965. checkPoint.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  966. checkPoint.o: /scratch/eric/emerald//Kernel/h/emCodes.h
  967. checkPoint.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  968. checkPoint.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  969. checkPoint.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  970. checkPoint.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  971. checkPoint.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  972. checkPoint.o: /scratch/eric/emerald//Kernel/h/map.h
  973. checkPoint.o: /scratch/eric/emerald//Kernel/h/set.h
  974. checkPoint.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
  975. checkPoint.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  976. checkPoint.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  977. checkPoint.o: /scratch/eric/emerald//Kernel/h/expandArray.h
  978. checkPoint.o: /scratch/eric/emerald//Kernel/h/consts.h
  979. checkPoint.o: /scratch/eric/emerald//Kernel/h/utils.h
  980. checkPoint.o: /scratch/eric/emerald//Kernel/h/cPLog.h
  981. checkPoint.o: /scratch/eric/emerald//Kernel/h/cPDBM.h
  982. checkPoint.o: /scratch/eric/emerald//Kernel/h/checkPoint.h
  983. checkPoint.o: /scratch/eric/emerald//Kernel/h/replicant.h
  984.  
  985. mobility.o: /scratch/eric/emerald//Kernel/h/system.h
  986. mobility.o: /scratch/eric/emerald//Kernel/h/assert.h
  987. mobility.o: /scratch/eric/emerald//Kernel/h/macros.h
  988. mobility.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  989. mobility.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  990. mobility.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  991. mobility.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  992. mobility.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  993. mobility.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  994. mobility.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  995. mobility.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  996. mobility.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  997. mobility.o: /scratch/eric/emerald//Kernel/h/emCodes.h
  998. mobility.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  999. mobility.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1000. mobility.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1001. mobility.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  1002. mobility.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  1003. mobility.o: /scratch/eric/emerald//Kernel/h/map.h
  1004. mobility.o: /scratch/eric/emerald//Kernel/h/set.h
  1005. mobility.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
  1006. mobility.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  1007. mobility.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  1008. mobility.o: /scratch/eric/emerald//Kernel/h/consts.h
  1009. mobility.o: /scratch/eric/emerald//Kernel/h/utils.h
  1010.  
  1011. locate.o: /scratch/eric/emerald//Kernel/h/system.h
  1012. locate.o: /scratch/eric/emerald//Kernel/h/assert.h
  1013. locate.o: /scratch/eric/emerald//Kernel/h/macros.h
  1014. locate.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1015. locate.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1016. locate.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  1017. locate.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1018. locate.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  1019. locate.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  1020. locate.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1021. locate.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1022. locate.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1023. locate.o: /scratch/eric/emerald//Kernel/h/emCodes.h
  1024. locate.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  1025. locate.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1026. locate.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1027. locate.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  1028. locate.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  1029. locate.o: /scratch/eric/emerald//Kernel/h/map.h
  1030. locate.o: /scratch/eric/emerald//Kernel/h/set.h
  1031. locate.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
  1032. locate.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  1033. locate.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  1034. locate.o: /scratch/eric/emerald//Kernel/h/expandArray.h
  1035. locate.o: /scratch/eric/emerald//Kernel/h/consts.h
  1036. locate.o: /scratch/eric/emerald//Kernel/h/utils.h
  1037. locate.o: /scratch/eric/emerald//Kernel/h/cPLog.h
  1038. locate.o: /scratch/eric/emerald//Kernel/h/cPDBM.h
  1039. locate.o: /scratch/eric/emerald//Kernel/h/ndbm.h
  1040. locate.o: /scratch/eric/emerald//Kernel/h/checkPoint.h
  1041. locate.o: /scratch/eric/emerald//Kernel/h/replicant.h
  1042.  
  1043. invoke.o: /scratch/eric/emerald//Kernel/h/system.h
  1044. invoke.o: /scratch/eric/emerald//Kernel/h/assert.h
  1045. invoke.o: /scratch/eric/emerald//Kernel/h/macros.h
  1046. invoke.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1047. invoke.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1048. invoke.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  1049. invoke.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1050. invoke.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  1051. invoke.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  1052. invoke.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1053. invoke.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1054. invoke.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1055. invoke.o: /scratch/eric/emerald//Kernel/h/emCodes.h
  1056. invoke.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  1057. invoke.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1058. invoke.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1059. invoke.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  1060. invoke.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  1061. invoke.o: /scratch/eric/emerald//Kernel/h/map.h
  1062. invoke.o: /scratch/eric/emerald//Kernel/h/set.h
  1063. invoke.o: /scratch/eric/emerald//Kernel/h/lmCodes.h
  1064. invoke.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  1065. invoke.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  1066. invoke.o: /scratch/eric/emerald//Kernel/h/utils.h
  1067.  
  1068. kOps.o: /scratch/eric/emerald//Kernel/h/system.h
  1069. kOps.o: /scratch/eric/emerald//Kernel/h/assert.h
  1070. kOps.o: /scratch/eric/emerald//Kernel/h/macros.h
  1071. kOps.o: /scratch/eric/emerald//Kernel/h/expandArray.h
  1072. kOps.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  1073. kOps.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1074. kOps.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  1075. kOps.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  1076. kOps.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1077. kOps.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1078. kOps.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1079. kOps.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  1080. kOps.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  1081. kOps.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1082. kOps.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1083. kOps.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  1084. kOps.o: /scratch/eric/emerald//Kernel/h/lmTypes.h
  1085. kOps.o: /scratch/eric/emerald//Kernel/h/emkDefs.h
  1086. kOps.o: /scratch/eric/emerald//Kernel/h/map.h
  1087. kOps.o: /scratch/eric/emerald//Kernel/h/set.h
  1088. kOps.o: /scratch/eric/emerald//Kernel/h/builtins.h
  1089. kOps.o: /scratch/eric/emerald//Kernel/h/emeraldTypes.h
  1090. kOps.o: /scratch/eric/emerald//Kernel/h/consts.h
  1091. kOps.o: /scratch/eric/emerald//Kernel/h/regdefs.h
  1092. kOps.o: /scratch/eric/emerald//Kernel/h/utils.h ../Em/ementryext.h
  1093. kOps.o: /scratch/eric/emerald//Kernel/Em/reqBuiltins.c ../Em/ementryset.c
  1094.  
  1095. OID.o: /scratch/eric/emerald//Kernel/h/system.h
  1096. OID.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  1097. OID.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1098. OID.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1099. OID.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  1100. OID.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1101. OID.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1102. OID.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  1103. OID.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  1104. OID.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1105.  
  1106. mainLoop.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1107. mainLoop.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1108. mainLoop.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1109. mainLoop.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  1110. mainLoop.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  1111.  
  1112. main.o: /scratch/eric/emerald//Kernel/h/assert.h
  1113. main.o: /scratch/eric/emerald//Kernel/h/system.h
  1114. main.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1115. main.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1116. main.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1117. main.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  1118. main.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1119. main.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  1120. main.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1121. main.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1122. main.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  1123. main.o: /scratch/eric/emerald//Kernel/h/kBootCodes.h
  1124. main.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1125. main.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  1126. main.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  1127. main.o: /scratch/eric/emerald//Kernel/h/kmdDefs.h
  1128. main.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1129. main.o: /scratch/eric/emerald//Kernel/h/emPorts.h
  1130. main.o: /scratch/eric/emerald//Kernel/h/ecTypes.h
  1131. main.o: /scratch/eric/emerald//Kernel/h/emTypes.h
  1132.  
  1133. bootKernel.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  1134. bootKernel.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1135. bootKernel.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1136. bootKernel.o: /scratch/eric/emerald//Kernel/h/system.h
  1137. bootKernel.o: /scratch/eric/emerald//Kernel/h/assert.h
  1138. bootKernel.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1139. bootKernel.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1140. bootKernel.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  1141. bootKernel.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  1142. bootKernel.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1143. bootKernel.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1144. bootKernel.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  1145. bootKernel.o: /scratch/eric/emerald//Kernel/h/kBootCodes.h
  1146. bootKernel.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1147. bootKernel.o: /scratch/eric/emerald//Kernel/h/dstCodes.h
  1148. bootKernel.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  1149. bootKernel.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  1150. bootKernel.o: /scratch/eric/emerald//Kernel/h/kBootTypes.h
  1151. bootKernel.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1152.  
  1153. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/system.h
  1154. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1155. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1156. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1157. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  1158. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1159. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  1160. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1161. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1162. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  1163. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/kBootCodes.h
  1164. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1165. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/dstCodes.h
  1166. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  1167. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  1168. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/kBootTypes.h
  1169. hotsUpDown.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1170.  
  1171. sunQueInst.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1172. sunQueInst.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1173.  
  1174. kTaskQ.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1175. kTaskQ.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1176. kTaskQ.o: /scratch/eric/emerald//Kernel/h/system.h
  1177.  
  1178. hotsAccess.o: /scratch/eric/emerald//Kernel/h/system.h
  1179. hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  1180. hotsAccess.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1181. hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1182. hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  1183. hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1184. hotsAccess.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1185. hotsAccess.o: /scratch/eric/emerald//Kernel/h/dstCodes.h
  1186. hotsAccess.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  1187. hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  1188. hotsAccess.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  1189. hotsAccess.o: /scratch/eric/emerald//Kernel/h/edenBaseTime.h
  1190. hotsAccess.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1191. hotsAccess.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1192.  
  1193. traceMsg.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1194. traceMsg.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1195.  
  1196. timerCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1197. timerCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1198. timerCode.o: /scratch/eric/emerald//Kernel/h/assert.h
  1199. timerCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  1200. timerCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  1201. timerCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1202. timerCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1203. timerCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1204. timerCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1205. timerCode.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  1206. timerCode.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1207. timerCode.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1208. timerCode.o: /scratch/eric/emerald//Kernel/h/expandArray.h
  1209. timerCode.o: /scratch/eric/emerald//Kernel/h/timeops.h
  1210. timerCode.o: /scratch/eric/emerald//Kernel/h/system.h
  1211. timerCode.o: /scratch/eric/emerald//Kernel/h/map.h
  1212.  
  1213. msgCode.o: /scratch/eric/emerald//Kernel/h/system.h
  1214. msgCode.o: /scratch/eric/emerald//Kernel/h/assert.h
  1215. msgCode.o: /scratch/eric/emerald//Kernel/h/macros.h
  1216. msgCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  1217. msgCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1218. msgCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1219. msgCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  1220. msgCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1221. msgCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1222. msgCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1223. msgCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1224. msgCode.o: /scratch/eric/emerald//Kernel/h/unixCodes.h
  1225. msgCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
  1226. msgCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  1227. msgCode.o: /scratch/eric/emerald//Kernel/h/hotsTypes.h
  1228. msgCode.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  1229. msgCode.o: /scratch/eric/emerald//Kernel/h/kEvents.h
  1230. msgCode.o: /scratch/eric/emerald//Kernel/h/timerTypes.h
  1231. msgCode.o: /scratch/eric/emerald//Kernel/h/kmdTypes.h
  1232. msgCode.o: /scratch/eric/emerald//Kernel/h/sigio.h
  1233.  
  1234. keyedCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  1235. keyedCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1236. keyedCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1237. keyedCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  1238. keyedCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1239. keyedCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1240. keyedCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1241. keyedCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1242. keyedCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
  1243. keyedCode.o: /scratch/eric/emerald//Kernel/h/mmKeyTypes.h
  1244.  
  1245. handlerCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1246. handlerCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1247. handlerCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  1248. handlerCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1249. handlerCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1250. handlerCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1251. handlerCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1252.  
  1253. fifoCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1254. fifoCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1255. fifoCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
  1256. fifoCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1257. fifoCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1258. fifoCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  1259. fifoCode.o: /scratch/eric/emerald//Kernel/h/mmMsgTypes.h
  1260. fifoCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1261. fifoCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1262.  
  1263. etherCode.o: /scratch/eric/emerald//Kernel/h/mmTypes.h
  1264. etherCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1265. etherCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1266. etherCode.o: /scratch/eric/emerald//Kernel/h/mmFifoTypes.h
  1267. etherCode.o: /scratch/eric/emerald//Kernel/h/mmEthrTypes.h
  1268. etherCode.o: /scratch/eric/emerald//Kernel/h/edenPorts.h
  1269. etherCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1270. etherCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1271.  
  1272. bufferCode.o: /scratch/eric/emerald//Kernel/h/system.h
  1273. bufferCode.o: /scratch/eric/emerald//Kernel/h/mmCodes.h
  1274. bufferCode.o: /scratch/eric/emerald//Kernel/h/errMsgs.h
  1275. bufferCode.o: /scratch/eric/emerald//Kernel/h/mmBufTypes.h
  1276. bufferCode.o: /scratch/eric/emerald//Kernel/h/stdTypes.h
  1277. bufferCode.o: /scratch/eric/emerald//Kernel/h/mmMsgDefs.h
  1278.  
  1279.  
  1280.