jl777
9 years ago
214 changed files with 220 additions and 6287 deletions
@ -1,44 +1,46 @@ |
|||||
NANOMSG_CORE = nanosrc/core/global.c nanosrc/core/ep.c nanosrc/core/epbase.c nanosrc/core/pipe.c nanosrc/core/poll.c nanosrc/core/sock.c nanosrc/core/sockbase.c nanosrc/core/symbol.c |
NANOSRC = ../crypto777/nanosrc |
||||
|
|
||||
NANOMSG_DEVICES = nanosrc/devices/device.c nanosrc/devices/tcpmuxd.c |
NANOMSG_CORE = $(NANOSRC)/core/global.c $(NANOSRC)/core/ep.c $(NANOSRC)/core/epbase.c $(NANOSRC)/core/pipe.c $(NANOSRC)/core/poll.c $(NANOSRC)/core/sock.c $(NANOSRC)/core/sockbase.c $(NANOSRC)/core/symbol.c |
||||
|
|
||||
NANOMSG_AIO = nanosrc/aio/ctx.c nanosrc/aio/fsm.c nanosrc/aio/poller.c nanosrc/aio/pool.c nanosrc/aio/timer.c nanosrc/aio/usock.c nanosrc/aio/timerset.c nanosrc/aio/worker.c |
NANOMSG_DEVICES = $(NANOSRC)/devices/device.c $(NANOSRC)/devices/tcpmuxd.c |
||||
|
|
||||
NANOMSG_UTILS = nanosrc/utils/alloc.c nanosrc/utils/atomic.c nanosrc/utils/chunk.c nanosrc/utils/chunkref.c nanosrc/utils/clock.c nanosrc/utils/closefd.c nanosrc/utils/efd.c nanosrc/utils/err.c nanosrc/utils/glock.c nanosrc/utils/hash.c nanosrc/utils/list.c nanosrc/utils/msg.c nanosrc/utils/mutex.c nanosrc/utils/queue.c nanosrc/utils/random.c nanosrc/utils/sem.c nanosrc/utils/sleep.c nanosrc/utils/stopwatch.c nanosrc/utils/thread.c nanosrc/utils/wire.c |
NANOMSG_AIO = $(NANOSRC)/aio/ctx.c $(NANOSRC)/aio/fsm.c $(NANOSRC)/aio/poller.c $(NANOSRC)/aio/pool.c $(NANOSRC)/aio/timer.c $(NANOSRC)/aio/usock.c $(NANOSRC)/aio/timerset.c $(NANOSRC)/aio/worker.c |
||||
|
|
||||
PROTOCOLS_UTILS = nanosrc/protocols/utils/dist.c nanosrc/protocols/utils/excl.c nanosrc/protocols/utils/fq.c nanosrc/protocols/utils/lb.c nanosrc/protocols/utils/priolist.c |
NANOMSG_UTILS = $(NANOSRC)/utils/alloc.c $(NANOSRC)/utils/atomic.c $(NANOSRC)/utils/chunk.c $(NANOSRC)/utils/chunkref.c $(NANOSRC)/utils/clock.c $(NANOSRC)/utils/closefd.c $(NANOSRC)/utils/efd.c $(NANOSRC)/utils/err.c $(NANOSRC)/utils/glock.c $(NANOSRC)/utils/hash.c $(NANOSRC)/utils/list.c $(NANOSRC)/utils/msg.c $(NANOSRC)/utils/mutex.c $(NANOSRC)/utils/queue.c $(NANOSRC)/utils/random.c $(NANOSRC)/utils/sem.c $(NANOSRC)/utils/sleep.c $(NANOSRC)/utils/stopwatch.c $(NANOSRC)/utils/thread.c $(NANOSRC)/utils/wire.c |
||||
|
|
||||
PROTOCOLS_BUS = nanosrc/protocols/bus/bus.c nanosrc/protocols/bus/xbus.c |
PROTOCOLS_UTILS = $(NANOSRC)/protocols/utils/dist.c $(NANOSRC)/protocols/utils/excl.c $(NANOSRC)/protocols/utils/fq.c $(NANOSRC)/protocols/utils/lb.c $(NANOSRC)/protocols/utils/priolist.c |
||||
|
|
||||
PROTOCOLS_PIPELINE = nanosrc/protocols/pipeline/push.c nanosrc/protocols/pipeline/pull.c nanosrc/protocols/pipeline/xpull.c nanosrc/protocols/pipeline/xpush.c |
PROTOCOLS_BUS = $(NANOSRC)/protocols/bus/bus.c $(NANOSRC)/protocols/bus/xbus.c |
||||
|
|
||||
PROTOCOLS_PUBSUB = nanosrc/protocols/pubsub/pub.c nanosrc/protocols/pubsub/sub.c nanosrc/protocols/pubsub/trie.c nanosrc/protocols/pubsub/xpub.c nanosrc/protocols/pubsub/xsub.c |
PROTOCOLS_PIPELINE = $(NANOSRC)/protocols/pipeline/push.c $(NANOSRC)/protocols/pipeline/pull.c $(NANOSRC)/protocols/pipeline/xpull.c $(NANOSRC)/protocols/pipeline/xpush.c |
||||
|
|
||||
PROTOCOLS_PAIR = nanosrc/protocols/pair/pair.c nanosrc/protocols/pair/xpair.c |
PROTOCOLS_PUBSUB = $(NANOSRC)/protocols/pubsub/pub.c $(NANOSRC)/protocols/pubsub/sub.c $(NANOSRC)/protocols/pubsub/trie.c $(NANOSRC)/protocols/pubsub/xpub.c $(NANOSRC)/protocols/pubsub/xsub.c |
||||
|
|
||||
PROTOCOLS_REQREP = nanosrc/protocols/reqrep/req.c nanosrc/protocols/reqrep/rep.c nanosrc/protocols/reqrep/task.c nanosrc/protocols/reqrep/xrep.c nanosrc/protocols/reqrep/xreq.c |
PROTOCOLS_PAIR = $(NANOSRC)/protocols/pair/pair.c $(NANOSRC)/protocols/pair/xpair.c |
||||
|
|
||||
PROTOCOLS_SURVEY = nanosrc/protocols/survey/respondent.c nanosrc/protocols/survey/surveyor.c nanosrc/protocols/survey/xrespondent.c nanosrc/protocols/survey/xsurveyor.c |
PROTOCOLS_REQREP = $(NANOSRC)/protocols/reqrep/req.c $(NANOSRC)/protocols/reqrep/rep.c $(NANOSRC)/protocols/reqrep/task.c $(NANOSRC)/protocols/reqrep/xrep.c $(NANOSRC)/protocols/reqrep/xreq.c |
||||
|
|
||||
TRANSPORTS_UTILS = nanosrc/transports/utils/backoff.c nanosrc/transports/utils/dns.c nanosrc/transports/utils/iface.c nanosrc/transports/utils/literal.c nanosrc/transports/utils/port.c nanosrc/transports/utils/streamhdr.c nanosrc/transports/utils/base64.c |
PROTOCOLS_SURVEY = $(NANOSRC)/protocols/survey/respondent.c $(NANOSRC)/protocols/survey/surveyor.c $(NANOSRC)/protocols/survey/xrespondent.c $(NANOSRC)/protocols/survey/xsurveyor.c |
||||
|
|
||||
TRANSPORTS_IPC = nanosrc/transports/ipc/aipc.c nanosrc/transports/ipc/bipc.c nanosrc/transports/ipc/cipc.c nanosrc/transports/ipc/ipc.c nanosrc/transports/ipc/sipc.c |
TRANSPORTS_UTILS = $(NANOSRC)/transports/utils/backoff.c $(NANOSRC)/transports/utils/dns.c $(NANOSRC)/transports/utils/iface.c $(NANOSRC)/transports/utils/literal.c $(NANOSRC)/transports/utils/port.c $(NANOSRC)/transports/utils/streamhdr.c $(NANOSRC)/transports/utils/base64.c |
||||
|
|
||||
TRANSPORTS_TCP = nanosrc/transports/tcp/atcp.c nanosrc/transports/tcp/btcp.c nanosrc/transports/tcp/ctcp.c nanosrc/transports/tcp/stcp.c nanosrc/transports/tcp/tcp.c |
TRANSPORTS_IPC = $(NANOSRC)/transports/ipc/aipc.c $(NANOSRC)/transports/ipc/bipc.c $(NANOSRC)/transports/ipc/cipc.c $(NANOSRC)/transports/ipc/ipc.c $(NANOSRC)/transports/ipc/sipc.c |
||||
|
|
||||
TRANSPORTS_INPROC = nanosrc/transports/inproc/binproc.c nanosrc/transports/inproc/cinproc.c nanosrc/transports/inproc/inproc.c nanosrc/transports/inproc/ins.c nanosrc/transports/inproc/msgqueue.c nanosrc/transports/inproc/sinproc.c |
TRANSPORTS_TCP = $(NANOSRC)/transports/tcp/atcp.c $(NANOSRC)/transports/tcp/btcp.c $(NANOSRC)/transports/tcp/ctcp.c $(NANOSRC)/transports/tcp/stcp.c $(NANOSRC)/transports/tcp/tcp.c |
||||
|
|
||||
TRANSPORTS_WS = nanosrc/transports/ws/aws.c nanosrc/transports/ws/bws.c nanosrc/transports/ws/cws.c nanosrc/transports/ws/sws.c nanosrc/transports/ws/ws.c nanosrc/transports/ws/ws_handshake.c nanosrc/transports/ws/sha1.c |
TRANSPORTS_INPROC = $(NANOSRC)/transports/inproc/binproc.c $(NANOSRC)/transports/inproc/cinproc.c $(NANOSRC)/transports/inproc/inproc.c $(NANOSRC)/transports/inproc/ins.c $(NANOSRC)/transports/inproc/msgqueue.c $(NANOSRC)/transports/inproc/sinproc.c |
||||
|
|
||||
TRANSPORTS_TCPMUX = nanosrc/transports/tcpmux/atcpmux.c nanosrc/transports/tcpmux/btcpmux.c nanosrc/transports/tcpmux/ctcpmux.c nanosrc/transports/tcpmux/stcpmux.c nanosrc/transports/tcpmux/tcpmux.c |
TRANSPORTS_WS = $(NANOSRC)/transports/ws/aws.c $(NANOSRC)/transports/ws/bws.c $(NANOSRC)/transports/ws/cws.c $(NANOSRC)/transports/ws/sws.c $(NANOSRC)/transports/ws/ws.c $(NANOSRC)/transports/ws/ws_handshake.c $(NANOSRC)/transports/ws/sha1.c |
||||
|
|
||||
|
TRANSPORTS_TCPMUX = $(NANOSRC)/transports/tcpmux/atcpmux.c $(NANOSRC)/transports/tcpmux/btcpmux.c $(NANOSRC)/transports/tcpmux/ctcpmux.c $(NANOSRC)/transports/tcpmux/stcpmux.c $(NANOSRC)/transports/tcpmux/tcpmux.c |
||||
|
|
||||
NANOMSG_PROTOCOLS = $(PROTOCOLS_UTILS) $(PROTOCOLS_PUBSUB) $(PROTOCOLS_PAIR) $(PROTOCOLS_REQREP) $(PROTOCOLS_BUS) $(PROTOCOLS_PIPELINE) $(PROTOCOLS_SURVEY) |
NANOMSG_PROTOCOLS = $(PROTOCOLS_UTILS) $(PROTOCOLS_PUBSUB) $(PROTOCOLS_PAIR) $(PROTOCOLS_REQREP) $(PROTOCOLS_BUS) $(PROTOCOLS_PIPELINE) $(PROTOCOLS_SURVEY) |
||||
|
|
||||
NANOMSG_TRANSPORTS = $(TRANSPORTS_UTILS) $(TRANSPORTS_TCP) |
NANOMSG_TRANSPORTS = $(TRANSPORTS_UTILS) $(TRANSPORTS_TCP) $(TRANSPORTS_IPC) $(TRANSPORTS_INPROC) |
||||
|
|
||||
NANOMSG = $(NANOMSG_CORE) $(NANOMSG_AIO) $(NANOMSG_UTILS) $(NANOMSG_DEVICES) $(NANOMSG_TRANSPORTS) $(NANOMSG_PROTOCOLS) |
NANOMSG = $(NANOMSG_CORE) $(NANOMSG_AIO) $(NANOMSG_UTILS) $(NANOMSG_DEVICES) $(NANOMSG_TRANSPORTS) $(NANOMSG_PROTOCOLS) |
||||
|
|
||||
JPEG_SRCS := ../crypto777/jpeg/jaricom.c ../crypto777/jpeg/jcapimin.c ../crypto777/jpeg/jcapistd.c ../crypto777/jpeg/jcarith.c ../crypto777/jpeg/jccoefct.c ../crypto777/jpeg/jccolor.c ../crypto777/jpeg/jcdctmgr.c ../crypto777/jpeg/jchuff.c ../crypto777/jpeg/jcinit.c ../crypto777/jpeg/jcmainct.c ../crypto777/jpeg/jcmarker.c ../crypto777/jpeg/jcmaster.c ../crypto777/jpeg/jcomapi.c ../crypto777/jpeg/jcparam.c ../crypto777/jpeg/jcprepct.c ../crypto777/jpeg/jcsample.c ../crypto777/jpeg/jctrans.c ../crypto777/jpeg/jdapimin.c ../crypto777/jpeg/jdapistd.c ../crypto777/jpeg/jdarith.c ../crypto777/jpeg/jdatadst.c ../crypto777/jpeg/jdatasrc.c ../crypto777/jpeg/jdcoefct.c ../crypto777/jpeg/jdcolor.c ../crypto777/jpeg/jddctmgr.c ../crypto777/jpeg/jdhuff.c ../crypto777/jpeg/jdinput.c ../crypto777/jpeg/jdmainct.c ../crypto777/jpeg/jdmarker.c ../crypto777/jpeg/jdmaster.c ../crypto777/jpeg/jdmerge.c ../crypto777/jpeg/jdpostct.c ../crypto777/jpeg/jdsample.c ../crypto777/jpeg/jdtrans.c ../crypto777/jpeg/jerror.c ../crypto777/jpeg/jfdctflt.c ../crypto777/jpeg/jfdctfst.c ../crypto777/jpeg/jfdctint.c ../crypto777/jpeg/jidctflt.c ../crypto777/jpeg/jidctfst.c ../crypto777/jpeg/jidctint.c ../crypto777/jpeg/jquant1.c ../crypto777/jpeg/jquant2.c ../crypto777/jpeg/jutils.c ../crypto777/jpeg/jmemmgr.c ../crypto777/jpeg/jmemnobs.c |
JPEG_SRCS := ../crypto777/jpeg/jaricom.c ../crypto777/jpeg/jcapimin.c ../crypto777/jpeg/jcapistd.c ../crypto777/jpeg/jcarith.c ../crypto777/jpeg/jccoefct.c ../crypto777/jpeg/jccolor.c ../crypto777/jpeg/jcdctmgr.c ../crypto777/jpeg/jchuff.c ../crypto777/jpeg/jcinit.c ../crypto777/jpeg/jcmainct.c ../crypto777/jpeg/jcmarker.c ../crypto777/jpeg/jcmaster.c ../crypto777/jpeg/jcomapi.c ../crypto777/jpeg/jcparam.c ../crypto777/jpeg/jcprepct.c ../crypto777/jpeg/jcsample.c ../crypto777/jpeg/jctrans.c ../crypto777/jpeg/jdapimin.c ../crypto777/jpeg/jdapistd.c ../crypto777/jpeg/jdarith.c ../crypto777/jpeg/jdatadst.c ../crypto777/jpeg/jdatasrc.c ../crypto777/jpeg/jdcoefct.c ../crypto777/jpeg/jdcolor.c ../crypto777/jpeg/jddctmgr.c ../crypto777/jpeg/jdhuff.c ../crypto777/jpeg/jdinput.c ../crypto777/jpeg/jdmainct.c ../crypto777/jpeg/jdmarker.c ../crypto777/jpeg/jdmaster.c ../crypto777/jpeg/jdmerge.c ../crypto777/jpeg/jdpostct.c ../crypto777/jpeg/jdsample.c ../crypto777/jpeg/jdtrans.c ../crypto777/jpeg/jerror.c ../crypto777/jpeg/jfdctflt.c ../crypto777/jpeg/jfdctfst.c ../crypto777/jpeg/jfdctint.c ../crypto777/jpeg/jidctflt.c ../crypto777/jpeg/jidctfst.c ../crypto777/jpeg/jidctint.c ../crypto777/jpeg/jquant1.c ../crypto777/jpeg/jquant2.c ../crypto777/jpeg/jutils.c ../crypto777/jpeg/jmemmgr.c ../crypto777/jpeg/jmemnobs.c |
||||
|
|
||||
CRYPTO777_SRCS := ../crypto777/ccgi.c ../crypto777/cJSON.c ../crypto777/iguana_utils.c ../crypto777/OS_nonportable.c ../crypto777/curve25519-donna.c ../crypto777/inet.c ../crypto777/OS_portable.c ../crypto777/curve25519.c ../crypto777/libgfshare.c ../crypto777/OS_time.c ../crypto777/hmac_sha512.c ../crypto777/ramcoder.c ../crypto777/SaM.c ../crypto777/iguana_OS.c ../crypto777/iguana_serdes.c $(JPEG_SRCS) $(NANOMSG) |
CRYPTO777_SRCS := ../crypto777/ccgi.c ../crypto777/cJSON.c ../crypto777/iguana_utils.c ../crypto777/OS_nonportable.c ../crypto777/curve25519-donna.c ../crypto777/inet.c ../crypto777/OS_portable.c ../crypto777/curve25519.c ../crypto777/libgfshare.c ../crypto777/OS_time.c ../crypto777/hmac_sha512.c ../crypto777/ramcoder.c ../crypto777/SaM.c ../crypto777/iguana_OS.c ../crypto777/iguana_serdes.c $(JPEG_SRCS) # $(NANOMSG) |
||||
|
|
||||
|
@ -1,33 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/OS_nonportable.o: \ |
|
||||
../crypto777/OS_nonportable.c ../crypto777/OS_portable.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ |
|
||||
../crypto777/../includes/libgfshare.h \ |
|
||||
../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ |
|
||||
../crypto777/../includes/curve25519.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ |
|
||||
../crypto777/../includes/cJSON.h \ |
|
||||
../includes/../crypto777/OS_portable.h |
|
||||
: |
|
||||
../crypto777/OS_nonportable.c: |
|
||||
../crypto777/OS_portable.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: |
|
||||
../crypto777/../includes/libgfshare.h: |
|
||||
../crypto777/../includes/utlist.h: |
|
||||
../crypto777/../includes/uthash.h: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
||||
../crypto777/../includes/cJSON.h: |
|
||||
../includes/../crypto777/OS_portable.h: |
|
@ -1,32 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/OS_portable.o: ../crypto777/OS_portable.c \ |
|
||||
../crypto777/OS_portable.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ |
|
||||
../crypto777/../includes/libgfshare.h \ |
|
||||
../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ |
|
||||
../crypto777/../includes/curve25519.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ |
|
||||
../crypto777/../includes/cJSON.h \ |
|
||||
../includes/../crypto777/OS_portable.h |
|
||||
../crypto777/OS_portable.c: |
|
||||
../crypto777/OS_portable.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: |
|
||||
../crypto777/../includes/libgfshare.h: |
|
||||
../crypto777/../includes/utlist.h: |
|
||||
../crypto777/../includes/uthash.h: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
||||
../crypto777/../includes/cJSON.h: |
|
||||
../includes/../crypto777/OS_portable.h: |
|
@ -1,32 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/OS_time.o: ../crypto777/OS_time.c \ |
|
||||
../crypto777/OS_portable.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ |
|
||||
../crypto777/../includes/libgfshare.h \ |
|
||||
../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ |
|
||||
../crypto777/../includes/curve25519.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ |
|
||||
../crypto777/../includes/cJSON.h \ |
|
||||
../includes/../crypto777/OS_portable.h |
|
||||
../crypto777/OS_time.c: |
|
||||
../crypto777/OS_portable.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: |
|
||||
../crypto777/../includes/libgfshare.h: |
|
||||
../crypto777/../includes/utlist.h: |
|
||||
../crypto777/../includes/uthash.h: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
||||
../crypto777/../includes/cJSON.h: |
|
||||
../includes/../crypto777/OS_portable.h: |
|
@ -1,7 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/SaM.o: ../crypto777/SaM.c \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ |
|
||||
../crypto777/../includes/curve25519.h |
|
||||
../crypto777/SaM.c: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
||||
../crypto777/../includes/curve25519.h: |
|
@ -1,30 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/cJSON.o: ../crypto777/cJSON.c \ |
|
||||
../crypto777/../includes/cJSON.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ |
|
||||
../includes/../crypto777/OS_portable.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ |
|
||||
../crypto777/../includes/libgfshare.h \ |
|
||||
../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ |
|
||||
../crypto777/../includes/curve25519.h |
|
||||
../crypto777/cJSON.c: |
|
||||
../crypto777/../includes/cJSON.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: |
|
||||
../includes/../crypto777/OS_portable.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: |
|
||||
../crypto777/../includes/libgfshare.h: |
|
||||
../crypto777/../includes/utlist.h: |
|
||||
../crypto777/../includes/uthash.h: |
|
||||
../crypto777/../includes/curve25519.h: |
|
@ -1,5 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/ccgi.o: ../crypto777/ccgi.c \ |
|
||||
../crypto777/../includes/ccgi.h |
|
||||
../crypto777/ccgi.c: |
|
||||
../crypto777/../includes/ccgi.h: |
|
@ -1,8 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/curve25519-donna.o: \ |
|
||||
../crypto777/curve25519-donna.c ../crypto777/../includes/curve25519.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h |
|
||||
: |
|
||||
../crypto777/curve25519-donna.c: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
@ -1,7 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/curve25519.o: ../crypto777/curve25519.c \ |
|
||||
../crypto777/../includes/curve25519.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h |
|
||||
../crypto777/curve25519.c: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
@ -1 +0,0 @@ |
|||||
Directory Stamp |
|
@ -1,83 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/hmac_sha512.o: ../crypto777/hmac_sha512.c \ |
|
||||
../crypto777/hmac/crypt_argchk.c ../crypto777/hmac/tomcrypt.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ |
|
||||
../crypto777/hmac/tomcrypt_custom.h ../crypto777/hmac/tomcrypt_cfg.h \ |
|
||||
../crypto777/hmac/tomcrypt_macros.h \ |
|
||||
../crypto777/hmac/tomcrypt_cipher.h ../crypto777/hmac/tomcrypt_hash.h \ |
|
||||
../crypto777/hmac/tomcrypt_mac.h ../crypto777/hmac/tomcrypt_prng.h \ |
|
||||
../crypto777/hmac/tomcrypt_pk.h ../crypto777/hmac/tomcrypt_math.h \ |
|
||||
../crypto777/hmac/tomcrypt_misc.h ../crypto777/hmac/tomcrypt_argchk.h \ |
|
||||
../crypto777/hmac/tomcrypt_pkcs.h ../crypto777/hmac/hash_memory.c \ |
|
||||
../crypto777/hmac/hmac_init.c ../crypto777/hmac/hmac_process.c \ |
|
||||
../crypto777/hmac/hmac_done.c ../crypto777/hmac/hmac_file.c \ |
|
||||
../crypto777/hmac/hmac_memory.c ../crypto777/hmac/rmd128.c \ |
|
||||
../crypto777/hmac/rmd160.c ../crypto777/hmac/rmd256.c \ |
|
||||
../crypto777/hmac/rmd320.c ../crypto777/hmac/tiger.c \ |
|
||||
../crypto777/hmac/md2.c ../crypto777/hmac/md4.c \ |
|
||||
../crypto777/hmac/md5.c ../crypto777/hmac/../OS_portable.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ |
|
||||
../crypto777/../includes/libgfshare.h \ |
|
||||
../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ |
|
||||
../crypto777/../includes/curve25519.h ../crypto777/../includes/cJSON.h \ |
|
||||
../includes/../crypto777/OS_portable.h ../crypto777/hmac/sha1.c \ |
|
||||
../crypto777/hmac/whirl.c ../crypto777/hmac/whirltab.c \ |
|
||||
../crypto777/hmac/sha224.c ../crypto777/hmac/sha256.c \ |
|
||||
../crypto777/hmac/sha384.c ../crypto777/hmac/sha512.c |
|
||||
../crypto777/hmac_sha512.c: |
|
||||
../crypto777/hmac/crypt_argchk.c: |
|
||||
../crypto777/hmac/tomcrypt.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
||||
../crypto777/hmac/tomcrypt_custom.h: |
|
||||
../crypto777/hmac/tomcrypt_cfg.h: |
|
||||
../crypto777/hmac/tomcrypt_macros.h: |
|
||||
../crypto777/hmac/tomcrypt_cipher.h: |
|
||||
../crypto777/hmac/tomcrypt_hash.h: |
|
||||
../crypto777/hmac/tomcrypt_mac.h: |
|
||||
../crypto777/hmac/tomcrypt_prng.h: |
|
||||
../crypto777/hmac/tomcrypt_pk.h: |
|
||||
../crypto777/hmac/tomcrypt_math.h: |
|
||||
../crypto777/hmac/tomcrypt_misc.h: |
|
||||
../crypto777/hmac/tomcrypt_argchk.h: |
|
||||
../crypto777/hmac/tomcrypt_pkcs.h: |
|
||||
../crypto777/hmac/hash_memory.c: |
|
||||
../crypto777/hmac/hmac_init.c: |
|
||||
../crypto777/hmac/hmac_process.c: |
|
||||
../crypto777/hmac/hmac_done.c: |
|
||||
../crypto777/hmac/hmac_file.c: |
|
||||
../crypto777/hmac/hmac_memory.c: |
|
||||
../crypto777/hmac/rmd128.c: |
|
||||
../crypto777/hmac/rmd160.c: |
|
||||
../crypto777/hmac/rmd256.c: |
|
||||
../crypto777/hmac/rmd320.c: |
|
||||
../crypto777/hmac/tiger.c: |
|
||||
../crypto777/hmac/md2.c: |
|
||||
../crypto777/hmac/md4.c: |
|
||||
../crypto777/hmac/md5.c: |
|
||||
../crypto777/hmac/../OS_portable.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: |
|
||||
../crypto777/../includes/libgfshare.h: |
|
||||
../crypto777/../includes/utlist.h: |
|
||||
../crypto777/../includes/uthash.h: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
../crypto777/../includes/cJSON.h: |
|
||||
../includes/../crypto777/OS_portable.h: |
|
||||
../crypto777/hmac/sha1.c: |
|
||||
../crypto777/hmac/whirl.c: |
|
||||
../crypto777/hmac/whirltab.c: |
|
||||
../crypto777/hmac/sha224.c: |
|
||||
../crypto777/hmac/sha256.c: |
|
||||
../crypto777/hmac/sha384.c: |
|
||||
../crypto777/hmac/sha512.c: |
|
@ -1,32 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/iguana_OS.o: ../crypto777/iguana_OS.c \ |
|
||||
../crypto777/OS_portable.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ |
|
||||
../crypto777/../includes/libgfshare.h \ |
|
||||
../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ |
|
||||
../crypto777/../includes/curve25519.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ |
|
||||
../crypto777/../includes/cJSON.h \ |
|
||||
../includes/../crypto777/OS_portable.h |
|
||||
../crypto777/iguana_OS.c: |
|
||||
../crypto777/OS_portable.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: |
|
||||
../crypto777/../includes/libgfshare.h: |
|
||||
../crypto777/../includes/utlist.h: |
|
||||
../crypto777/../includes/uthash.h: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
||||
../crypto777/../includes/cJSON.h: |
|
||||
../includes/../crypto777/OS_portable.h: |
|
@ -1,32 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/iguana_serdes.o: ../crypto777/iguana_serdes.c \ |
|
||||
../crypto777/OS_portable.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ |
|
||||
../crypto777/../includes/libgfshare.h \ |
|
||||
../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ |
|
||||
../crypto777/../includes/curve25519.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ |
|
||||
../crypto777/../includes/cJSON.h \ |
|
||||
../includes/../crypto777/OS_portable.h |
|
||||
../crypto777/iguana_serdes.c: |
|
||||
../crypto777/OS_portable.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: |
|
||||
../crypto777/../includes/libgfshare.h: |
|
||||
../crypto777/../includes/utlist.h: |
|
||||
../crypto777/../includes/uthash.h: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
||||
../crypto777/../includes/cJSON.h: |
|
||||
../includes/../crypto777/OS_portable.h: |
|
@ -1,59 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/iguana_utils.o: ../crypto777/iguana_utils.c \ |
|
||||
../crypto777/../iguana/iguana777.h \ |
|
||||
../crypto777/../iguana/../crypto777/OS_portable.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ |
|
||||
../crypto777/../includes/libgfshare.h \ |
|
||||
../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ |
|
||||
../crypto777/../includes/curve25519.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ |
|
||||
../crypto777/../includes/cJSON.h \ |
|
||||
../includes/../crypto777/OS_portable.h \ |
|
||||
../crypto777/../iguana/SuperNET.h \ |
|
||||
../crypto777/../iguana/../includes/nanomsg/nn.h \ |
|
||||
../crypto777/../iguana/../includes/nanomsg/nn_config.h \ |
|
||||
../crypto777/../iguana/../includes/nanomsg/pair.h \ |
|
||||
../crypto777/../iguana/../includes/nanomsg/bus.h \ |
|
||||
../crypto777/../iguana/../includes/nanomsg/pubsub.h \ |
|
||||
../crypto777/../iguana/../includes/nanomsg/reqrep.h \ |
|
||||
../crypto777/../iguana/../includes/nanomsg/survey.h \ |
|
||||
../crypto777/../iguana/../includes/nanomsg/pipeline.h \ |
|
||||
../crypto777/../iguana/../includes/iguana_api.h \ |
|
||||
../includes/iguana_apidefs.h ../includes/iguana_apideclares.h \ |
|
||||
../includes/iguana_apiundefs.h |
|
||||
../crypto777/iguana_utils.c: |
|
||||
../crypto777/../iguana/iguana777.h: |
|
||||
../crypto777/../iguana/../crypto777/OS_portable.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: |
|
||||
../crypto777/../includes/libgfshare.h: |
|
||||
../crypto777/../includes/utlist.h: |
|
||||
../crypto777/../includes/uthash.h: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
||||
../crypto777/../includes/cJSON.h: |
|
||||
../includes/../crypto777/OS_portable.h: |
|
||||
../crypto777/../iguana/SuperNET.h: |
|
||||
../crypto777/../iguana/../includes/nanomsg/nn.h: |
|
||||
../crypto777/../iguana/../includes/nanomsg/nn_config.h: |
|
||||
../crypto777/../iguana/../includes/nanomsg/pair.h: |
|
||||
../crypto777/../iguana/../includes/nanomsg/bus.h: |
|
||||
../crypto777/../iguana/../includes/nanomsg/pubsub.h: |
|
||||
../crypto777/../iguana/../includes/nanomsg/reqrep.h: |
|
||||
../crypto777/../iguana/../includes/nanomsg/survey.h: |
|
||||
../crypto777/../iguana/../includes/nanomsg/pipeline.h: |
|
||||
../crypto777/../iguana/../includes/iguana_api.h: |
|
||||
../includes/iguana_apidefs.h: |
|
||||
../includes/iguana_apideclares.h: |
|
||||
../includes/iguana_apiundefs.h: |
|
@ -1,32 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/inet.o: ../crypto777/inet.c \ |
|
||||
../crypto777/OS_portable.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ |
|
||||
../crypto777/../includes/libgfshare.h \ |
|
||||
../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ |
|
||||
../crypto777/../includes/curve25519.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ |
|
||||
../crypto777/../includes/cJSON.h \ |
|
||||
../includes/../crypto777/OS_portable.h |
|
||||
../crypto777/inet.c: |
|
||||
../crypto777/OS_portable.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: |
|
||||
../crypto777/../includes/libgfshare.h: |
|
||||
../crypto777/../includes/utlist.h: |
|
||||
../crypto777/../includes/uthash.h: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
||||
../crypto777/../includes/cJSON.h: |
|
||||
../includes/../crypto777/OS_portable.h: |
|
@ -1 +0,0 @@ |
|||||
Directory Stamp |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jaricom.o: ../crypto777/jpeg/jaricom.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jaricom.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcapimin.o: ../crypto777/jpeg/jcapimin.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jcapimin.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcapistd.o: ../crypto777/jpeg/jcapistd.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jcapistd.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcarith.o: ../crypto777/jpeg/jcarith.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jcarith.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jccoefct.o: ../crypto777/jpeg/jccoefct.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jccoefct.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jccolor.o: ../crypto777/jpeg/jccolor.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jccolor.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,14 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcdctmgr.o: ../crypto777/jpeg/jcdctmgr.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ |
|
||||
../crypto777/jpeg/jdct.h |
|
||||
../crypto777/jpeg/jcdctmgr.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
||||
../crypto777/jpeg/jdct.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jchuff.o: ../crypto777/jpeg/jchuff.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jchuff.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcinit.o: ../crypto777/jpeg/jcinit.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jcinit.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcmainct.o: ../crypto777/jpeg/jcmainct.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jcmainct.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcmarker.o: ../crypto777/jpeg/jcmarker.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jcmarker.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcmaster.o: ../crypto777/jpeg/jcmaster.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jcmaster.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcomapi.o: ../crypto777/jpeg/jcomapi.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jcomapi.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcparam.o: ../crypto777/jpeg/jcparam.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jcparam.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcprepct.o: ../crypto777/jpeg/jcprepct.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jcprepct.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jcsample.o: ../crypto777/jpeg/jcsample.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jcsample.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jctrans.o: ../crypto777/jpeg/jctrans.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jctrans.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdapimin.o: ../crypto777/jpeg/jdapimin.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdapimin.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdapistd.o: ../crypto777/jpeg/jdapistd.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdapistd.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdarith.o: ../crypto777/jpeg/jdarith.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdarith.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,11 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdatadst.o: ../crypto777/jpeg/jdatadst.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdatadst.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,11 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdatasrc.o: ../crypto777/jpeg/jdatasrc.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdatasrc.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdcoefct.o: ../crypto777/jpeg/jdcoefct.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdcoefct.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdcolor.o: ../crypto777/jpeg/jdcolor.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdcolor.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,14 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jddctmgr.o: ../crypto777/jpeg/jddctmgr.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ |
|
||||
../crypto777/jpeg/jdct.h |
|
||||
../crypto777/jpeg/jddctmgr.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
||||
../crypto777/jpeg/jdct.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdhuff.o: ../crypto777/jpeg/jdhuff.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdhuff.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdinput.o: ../crypto777/jpeg/jdinput.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdinput.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdmainct.o: ../crypto777/jpeg/jdmainct.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdmainct.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdmarker.o: ../crypto777/jpeg/jdmarker.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdmarker.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdmaster.o: ../crypto777/jpeg/jdmaster.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdmaster.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdmerge.o: ../crypto777/jpeg/jdmerge.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdmerge.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdpostct.o: ../crypto777/jpeg/jdpostct.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdpostct.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdsample.o: ../crypto777/jpeg/jdsample.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdsample.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jdtrans.o: ../crypto777/jpeg/jdtrans.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jdtrans.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jerror.o: ../crypto777/jpeg/jerror.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jversion.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jerror.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jversion.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,14 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jfdctflt.o: ../crypto777/jpeg/jfdctflt.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ |
|
||||
../crypto777/jpeg/jdct.h |
|
||||
../crypto777/jpeg/jfdctflt.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
||||
../crypto777/jpeg/jdct.h: |
|
@ -1,14 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jfdctfst.o: ../crypto777/jpeg/jfdctfst.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ |
|
||||
../crypto777/jpeg/jdct.h |
|
||||
../crypto777/jpeg/jfdctfst.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
||||
../crypto777/jpeg/jdct.h: |
|
@ -1,14 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jfdctint.o: ../crypto777/jpeg/jfdctint.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ |
|
||||
../crypto777/jpeg/jdct.h |
|
||||
../crypto777/jpeg/jfdctint.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
||||
../crypto777/jpeg/jdct.h: |
|
@ -1,14 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jidctflt.o: ../crypto777/jpeg/jidctflt.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ |
|
||||
../crypto777/jpeg/jdct.h |
|
||||
../crypto777/jpeg/jidctflt.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
||||
../crypto777/jpeg/jdct.h: |
|
@ -1,14 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jidctfst.o: ../crypto777/jpeg/jidctfst.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ |
|
||||
../crypto777/jpeg/jdct.h |
|
||||
../crypto777/jpeg/jidctfst.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
||||
../crypto777/jpeg/jdct.h: |
|
@ -1,14 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jidctint.o: ../crypto777/jpeg/jidctint.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ |
|
||||
../crypto777/jpeg/jdct.h |
|
||||
../crypto777/jpeg/jidctint.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
||||
../crypto777/jpeg/jdct.h: |
|
@ -1,14 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jmemmgr.o: ../crypto777/jpeg/jmemmgr.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ |
|
||||
../crypto777/jpeg/jmemsys.h |
|
||||
../crypto777/jpeg/jmemmgr.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
||||
../crypto777/jpeg/jmemsys.h: |
|
@ -1,14 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jmemnobs.o: ../crypto777/jpeg/jmemnobs.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h \ |
|
||||
../crypto777/jpeg/jmemsys.h |
|
||||
../crypto777/jpeg/jmemnobs.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
||||
../crypto777/jpeg/jmemsys.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jquant1.o: ../crypto777/jpeg/jquant1.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jquant1.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jquant2.o: ../crypto777/jpeg/jquant2.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jquant2.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,12 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/jpeg/jutils.o: ../crypto777/jpeg/jutils.c \ |
|
||||
../crypto777/jpeg/jinclude.h ../crypto777/jpeg/jconfig.h \ |
|
||||
../crypto777/jpeg/jpeglib.h ../crypto777/jpeg/jmorecfg.h \ |
|
||||
../crypto777/jpeg/jpegint.h ../crypto777/jpeg/jerror.h |
|
||||
../crypto777/jpeg/jutils.c: |
|
||||
../crypto777/jpeg/jinclude.h: |
|
||||
../crypto777/jpeg/jconfig.h: |
|
||||
../crypto777/jpeg/jpeglib.h: |
|
||||
../crypto777/jpeg/jmorecfg.h: |
|
||||
../crypto777/jpeg/jpegint.h: |
|
||||
../crypto777/jpeg/jerror.h: |
|
@ -1,32 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/libgfshare.o: ../crypto777/libgfshare.c \ |
|
||||
../crypto777/OS_portable.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h \ |
|
||||
../crypto777/../includes/libgfshare.h \ |
|
||||
../crypto777/../includes/utlist.h ../crypto777/../includes/uthash.h \ |
|
||||
../crypto777/../includes/curve25519.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h \ |
|
||||
../crypto777/../includes/cJSON.h \ |
|
||||
../includes/../crypto777/OS_portable.h |
|
||||
../crypto777/libgfshare.c: |
|
||||
../crypto777/OS_portable.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netdb.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/in.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet6/in6.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/socket.h: |
|
||||
../crypto777/../includes/libgfshare.h: |
|
||||
../crypto777/../includes/utlist.h: |
|
||||
../crypto777/../includes/uthash.h: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
||||
../crypto777/../includes/cJSON.h: |
|
||||
../includes/../crypto777/OS_portable.h: |
|
@ -1,7 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/__/crypto777/ramcoder.o: ../crypto777/ramcoder.c \ |
|
||||
../crypto777/../includes/curve25519.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h |
|
||||
../crypto777/ramcoder.c: |
|
||||
../crypto777/../includes/curve25519.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/memory.h: |
|
@ -1 +0,0 @@ |
|||||
Directory Stamp |
|
@ -1 +0,0 @@ |
|||||
TOUCHED /Users/jl777/iguana/crypto777/pnacl/Release/nacl_io.stamp |
|
@ -1,41 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/aio/ctx.o: nanosrc/aio/ctx.c nanosrc/aio/ctx.h \ |
|
||||
nanosrc/aio/../utils/mutex.h nanosrc/aio/../utils/queue.h \ |
|
||||
nanosrc/aio/worker.h nanosrc/aio/fsm.h nanosrc/aio/timerset.h \ |
|
||||
nanosrc/aio/../utils/clock.h nanosrc/aio/../utils/int.h \ |
|
||||
nanosrc/aio/../utils/list.h nanosrc/aio/worker_posix.h \ |
|
||||
nanosrc/aio/../utils/thread.h nanosrc/aio/../utils/thread_posix.h \ |
|
||||
nanosrc/aio/../utils/efd.h nanosrc/aio/../utils/../nn_config.h \ |
|
||||
nanosrc/aio/../utils/fd.h nanosrc/aio/../utils/efd_pipe.h \ |
|
||||
nanosrc/aio/poller.h nanosrc/aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/aio/pool.h nanosrc/aio/../utils/err.h \ |
|
||||
nanosrc/aio/../utils/../nn.h nanosrc/aio/../utils/fast.h \ |
|
||||
nanosrc/aio/../utils/cont.h |
|
||||
nanosrc/aio/ctx.c: |
|
||||
nanosrc/aio/ctx.h: |
|
||||
nanosrc/aio/../utils/mutex.h: |
|
||||
nanosrc/aio/../utils/queue.h: |
|
||||
nanosrc/aio/worker.h: |
|
||||
nanosrc/aio/fsm.h: |
|
||||
nanosrc/aio/timerset.h: |
|
||||
nanosrc/aio/../utils/clock.h: |
|
||||
nanosrc/aio/../utils/int.h: |
|
||||
nanosrc/aio/../utils/list.h: |
|
||||
nanosrc/aio/worker_posix.h: |
|
||||
nanosrc/aio/../utils/thread.h: |
|
||||
nanosrc/aio/../utils/thread_posix.h: |
|
||||
nanosrc/aio/../utils/efd.h: |
|
||||
nanosrc/aio/../utils/../nn_config.h: |
|
||||
nanosrc/aio/../utils/fd.h: |
|
||||
nanosrc/aio/../utils/efd_pipe.h: |
|
||||
nanosrc/aio/poller.h: |
|
||||
nanosrc/aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/aio/pool.h: |
|
||||
nanosrc/aio/../utils/err.h: |
|
||||
nanosrc/aio/../utils/../nn.h: |
|
||||
nanosrc/aio/../utils/fast.h: |
|
||||
nanosrc/aio/../utils/cont.h: |
|
@ -1 +0,0 @@ |
|||||
Directory Stamp |
|
@ -1,40 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/aio/fsm.o: nanosrc/aio/fsm.c nanosrc/aio/fsm.h \ |
|
||||
nanosrc/aio/../utils/queue.h nanosrc/aio/ctx.h \ |
|
||||
nanosrc/aio/../utils/mutex.h nanosrc/aio/worker.h \ |
|
||||
nanosrc/aio/timerset.h nanosrc/aio/../utils/clock.h \ |
|
||||
nanosrc/aio/../utils/int.h nanosrc/aio/../utils/list.h \ |
|
||||
nanosrc/aio/worker_posix.h nanosrc/aio/../utils/thread.h \ |
|
||||
nanosrc/aio/../utils/thread_posix.h nanosrc/aio/../utils/efd.h \ |
|
||||
nanosrc/aio/../utils/../nn_config.h nanosrc/aio/../utils/fd.h \ |
|
||||
nanosrc/aio/../utils/efd_pipe.h nanosrc/aio/poller.h \ |
|
||||
nanosrc/aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/aio/pool.h nanosrc/aio/../utils/err.h \ |
|
||||
nanosrc/aio/../utils/../nn.h nanosrc/aio/../utils/fast.h |
|
||||
nanosrc/aio/fsm.c: |
|
||||
nanosrc/aio/fsm.h: |
|
||||
nanosrc/aio/../utils/queue.h: |
|
||||
nanosrc/aio/ctx.h: |
|
||||
nanosrc/aio/../utils/mutex.h: |
|
||||
nanosrc/aio/worker.h: |
|
||||
nanosrc/aio/timerset.h: |
|
||||
nanosrc/aio/../utils/clock.h: |
|
||||
nanosrc/aio/../utils/int.h: |
|
||||
nanosrc/aio/../utils/list.h: |
|
||||
nanosrc/aio/worker_posix.h: |
|
||||
nanosrc/aio/../utils/thread.h: |
|
||||
nanosrc/aio/../utils/thread_posix.h: |
|
||||
nanosrc/aio/../utils/efd.h: |
|
||||
nanosrc/aio/../utils/../nn_config.h: |
|
||||
nanosrc/aio/../utils/fd.h: |
|
||||
nanosrc/aio/../utils/efd_pipe.h: |
|
||||
nanosrc/aio/poller.h: |
|
||||
nanosrc/aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/aio/pool.h: |
|
||||
nanosrc/aio/../utils/err.h: |
|
||||
nanosrc/aio/../utils/../nn.h: |
|
||||
nanosrc/aio/../utils/fast.h: |
|
@ -1,20 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/aio/poller.o: nanosrc/aio/poller.c \ |
|
||||
nanosrc/aio/poller.h nanosrc/aio/../nn_config.h \ |
|
||||
nanosrc/aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/aio/poller_poll.c nanosrc/aio/../utils/alloc.h \ |
|
||||
nanosrc/aio/../utils/err.h nanosrc/aio/../utils/../nn.h \ |
|
||||
nanosrc/aio/../utils/fast.h |
|
||||
nanosrc/aio/poller.c: |
|
||||
nanosrc/aio/poller.h: |
|
||||
nanosrc/aio/../nn_config.h: |
|
||||
nanosrc/aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/aio/poller_poll.c: |
|
||||
nanosrc/aio/../utils/alloc.h: |
|
||||
nanosrc/aio/../utils/err.h: |
|
||||
nanosrc/aio/../utils/../nn.h: |
|
||||
nanosrc/aio/../utils/fast.h: |
|
@ -1,33 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/aio/pool.o: nanosrc/aio/pool.c nanosrc/aio/pool.h \ |
|
||||
nanosrc/aio/worker.h nanosrc/aio/fsm.h nanosrc/aio/../utils/queue.h \ |
|
||||
nanosrc/aio/timerset.h nanosrc/aio/../utils/clock.h \ |
|
||||
nanosrc/aio/../utils/int.h nanosrc/aio/../utils/list.h \ |
|
||||
nanosrc/aio/worker_posix.h nanosrc/aio/../utils/mutex.h \ |
|
||||
nanosrc/aio/../utils/thread.h nanosrc/aio/../utils/thread_posix.h \ |
|
||||
nanosrc/aio/../utils/efd.h nanosrc/aio/../utils/../nn_config.h \ |
|
||||
nanosrc/aio/../utils/fd.h nanosrc/aio/../utils/efd_pipe.h \ |
|
||||
nanosrc/aio/poller.h nanosrc/aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h |
|
||||
nanosrc/aio/pool.c: |
|
||||
nanosrc/aio/pool.h: |
|
||||
nanosrc/aio/worker.h: |
|
||||
nanosrc/aio/fsm.h: |
|
||||
nanosrc/aio/../utils/queue.h: |
|
||||
nanosrc/aio/timerset.h: |
|
||||
nanosrc/aio/../utils/clock.h: |
|
||||
nanosrc/aio/../utils/int.h: |
|
||||
nanosrc/aio/../utils/list.h: |
|
||||
nanosrc/aio/worker_posix.h: |
|
||||
nanosrc/aio/../utils/mutex.h: |
|
||||
nanosrc/aio/../utils/thread.h: |
|
||||
nanosrc/aio/../utils/thread_posix.h: |
|
||||
nanosrc/aio/../utils/efd.h: |
|
||||
nanosrc/aio/../utils/../nn_config.h: |
|
||||
nanosrc/aio/../utils/fd.h: |
|
||||
nanosrc/aio/../utils/efd_pipe.h: |
|
||||
nanosrc/aio/poller.h: |
|
||||
nanosrc/aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
@ -1,42 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/aio/timer.o: nanosrc/aio/timer.c \ |
|
||||
nanosrc/aio/timer.h nanosrc/aio/fsm.h nanosrc/aio/../utils/queue.h \ |
|
||||
nanosrc/aio/worker.h nanosrc/aio/timerset.h \ |
|
||||
nanosrc/aio/../utils/clock.h nanosrc/aio/../utils/int.h \ |
|
||||
nanosrc/aio/../utils/list.h nanosrc/aio/worker_posix.h \ |
|
||||
nanosrc/aio/../utils/mutex.h nanosrc/aio/../utils/thread.h \ |
|
||||
nanosrc/aio/../utils/thread_posix.h nanosrc/aio/../utils/efd.h \ |
|
||||
nanosrc/aio/../utils/../nn_config.h nanosrc/aio/../utils/fd.h \ |
|
||||
nanosrc/aio/../utils/efd_pipe.h nanosrc/aio/poller.h \ |
|
||||
nanosrc/aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/aio/../utils/cont.h nanosrc/aio/../utils/fast.h \ |
|
||||
nanosrc/aio/../utils/err.h nanosrc/aio/../utils/../nn.h \ |
|
||||
nanosrc/aio/../utils/attr.h |
|
||||
nanosrc/aio/timer.c: |
|
||||
nanosrc/aio/timer.h: |
|
||||
nanosrc/aio/fsm.h: |
|
||||
nanosrc/aio/../utils/queue.h: |
|
||||
nanosrc/aio/worker.h: |
|
||||
nanosrc/aio/timerset.h: |
|
||||
nanosrc/aio/../utils/clock.h: |
|
||||
nanosrc/aio/../utils/int.h: |
|
||||
nanosrc/aio/../utils/list.h: |
|
||||
nanosrc/aio/worker_posix.h: |
|
||||
nanosrc/aio/../utils/mutex.h: |
|
||||
nanosrc/aio/../utils/thread.h: |
|
||||
nanosrc/aio/../utils/thread_posix.h: |
|
||||
nanosrc/aio/../utils/efd.h: |
|
||||
nanosrc/aio/../utils/../nn_config.h: |
|
||||
nanosrc/aio/../utils/fd.h: |
|
||||
nanosrc/aio/../utils/efd_pipe.h: |
|
||||
nanosrc/aio/poller.h: |
|
||||
nanosrc/aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/aio/../utils/cont.h: |
|
||||
nanosrc/aio/../utils/fast.h: |
|
||||
nanosrc/aio/../utils/err.h: |
|
||||
nanosrc/aio/../utils/../nn.h: |
|
||||
nanosrc/aio/../utils/attr.h: |
|
@ -1,17 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/aio/timerset.o: nanosrc/aio/timerset.c \ |
|
||||
nanosrc/aio/timerset.h nanosrc/aio/../utils/clock.h \ |
|
||||
nanosrc/aio/../utils/int.h nanosrc/aio/../utils/list.h \ |
|
||||
nanosrc/aio/../utils/fast.h nanosrc/aio/../utils/cont.h \ |
|
||||
nanosrc/aio/../utils/err.h nanosrc/aio/../utils/../nn.h \ |
|
||||
nanosrc/aio/../utils/../nn_config.h |
|
||||
nanosrc/aio/timerset.c: |
|
||||
nanosrc/aio/timerset.h: |
|
||||
nanosrc/aio/../utils/clock.h: |
|
||||
nanosrc/aio/../utils/int.h: |
|
||||
nanosrc/aio/../utils/list.h: |
|
||||
nanosrc/aio/../utils/fast.h: |
|
||||
nanosrc/aio/../utils/cont.h: |
|
||||
nanosrc/aio/../utils/err.h: |
|
||||
nanosrc/aio/../utils/../nn.h: |
|
||||
nanosrc/aio/../utils/../nn_config.h: |
|
@ -1,48 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/aio/usock.o: nanosrc/aio/usock.c \ |
|
||||
nanosrc/aio/usock.h nanosrc/aio/../nn.h nanosrc/aio/../nn_config.h \ |
|
||||
nanosrc/aio/usock_posix.h nanosrc/aio/fsm.h \ |
|
||||
nanosrc/aio/../utils/queue.h nanosrc/aio/worker.h \ |
|
||||
nanosrc/aio/timerset.h nanosrc/aio/../utils/clock.h \ |
|
||||
nanosrc/aio/../utils/int.h nanosrc/aio/../utils/list.h \ |
|
||||
nanosrc/aio/worker_posix.h nanosrc/aio/../utils/mutex.h \ |
|
||||
nanosrc/aio/../utils/thread.h nanosrc/aio/../utils/thread_posix.h \ |
|
||||
nanosrc/aio/../utils/efd.h nanosrc/aio/../utils/fd.h \ |
|
||||
nanosrc/aio/../utils/efd_pipe.h nanosrc/aio/poller.h \ |
|
||||
nanosrc/aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/aio/usock_posix.c nanosrc/aio/../utils/alloc.h \ |
|
||||
nanosrc/aio/../utils/closefd.h nanosrc/aio/../utils/cont.h \ |
|
||||
nanosrc/aio/../utils/fast.h nanosrc/aio/../utils/err.h \ |
|
||||
nanosrc/aio/../utils/attr.h |
|
||||
nanosrc/aio/usock.c: |
|
||||
nanosrc/aio/usock.h: |
|
||||
nanosrc/aio/../nn.h: |
|
||||
nanosrc/aio/../nn_config.h: |
|
||||
nanosrc/aio/usock_posix.h: |
|
||||
nanosrc/aio/fsm.h: |
|
||||
nanosrc/aio/../utils/queue.h: |
|
||||
nanosrc/aio/worker.h: |
|
||||
nanosrc/aio/timerset.h: |
|
||||
nanosrc/aio/../utils/clock.h: |
|
||||
nanosrc/aio/../utils/int.h: |
|
||||
nanosrc/aio/../utils/list.h: |
|
||||
nanosrc/aio/worker_posix.h: |
|
||||
nanosrc/aio/../utils/mutex.h: |
|
||||
nanosrc/aio/../utils/thread.h: |
|
||||
nanosrc/aio/../utils/thread_posix.h: |
|
||||
nanosrc/aio/../utils/efd.h: |
|
||||
nanosrc/aio/../utils/fd.h: |
|
||||
nanosrc/aio/../utils/efd_pipe.h: |
|
||||
nanosrc/aio/poller.h: |
|
||||
nanosrc/aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/aio/usock_posix.c: |
|
||||
nanosrc/aio/../utils/alloc.h: |
|
||||
nanosrc/aio/../utils/closefd.h: |
|
||||
nanosrc/aio/../utils/cont.h: |
|
||||
nanosrc/aio/../utils/fast.h: |
|
||||
nanosrc/aio/../utils/err.h: |
|
||||
nanosrc/aio/../utils/attr.h: |
|
@ -1,44 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/aio/worker.o: nanosrc/aio/worker.c \ |
|
||||
nanosrc/aio/worker.h nanosrc/aio/fsm.h nanosrc/aio/../utils/queue.h \ |
|
||||
nanosrc/aio/timerset.h nanosrc/aio/../utils/clock.h \ |
|
||||
nanosrc/aio/../utils/int.h nanosrc/aio/../utils/list.h \ |
|
||||
nanosrc/aio/worker_posix.h nanosrc/aio/../utils/mutex.h \ |
|
||||
nanosrc/aio/../utils/thread.h nanosrc/aio/../utils/thread_posix.h \ |
|
||||
nanosrc/aio/../utils/efd.h nanosrc/aio/../utils/../nn_config.h \ |
|
||||
nanosrc/aio/../utils/fd.h nanosrc/aio/../utils/efd_pipe.h \ |
|
||||
nanosrc/aio/poller.h nanosrc/aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/aio/worker_posix.c nanosrc/aio/ctx.h nanosrc/aio/pool.h \ |
|
||||
nanosrc/aio/../utils/err.h nanosrc/aio/../utils/../nn.h \ |
|
||||
nanosrc/aio/../utils/fast.h nanosrc/aio/../utils/cont.h \ |
|
||||
nanosrc/aio/../utils/attr.h |
|
||||
nanosrc/aio/worker.c: |
|
||||
nanosrc/aio/worker.h: |
|
||||
nanosrc/aio/fsm.h: |
|
||||
nanosrc/aio/../utils/queue.h: |
|
||||
nanosrc/aio/timerset.h: |
|
||||
nanosrc/aio/../utils/clock.h: |
|
||||
nanosrc/aio/../utils/int.h: |
|
||||
nanosrc/aio/../utils/list.h: |
|
||||
nanosrc/aio/worker_posix.h: |
|
||||
nanosrc/aio/../utils/mutex.h: |
|
||||
nanosrc/aio/../utils/thread.h: |
|
||||
nanosrc/aio/../utils/thread_posix.h: |
|
||||
nanosrc/aio/../utils/efd.h: |
|
||||
nanosrc/aio/../utils/../nn_config.h: |
|
||||
nanosrc/aio/../utils/fd.h: |
|
||||
nanosrc/aio/../utils/efd_pipe.h: |
|
||||
nanosrc/aio/poller.h: |
|
||||
nanosrc/aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/aio/worker_posix.c: |
|
||||
nanosrc/aio/ctx.h: |
|
||||
nanosrc/aio/pool.h: |
|
||||
nanosrc/aio/../utils/err.h: |
|
||||
nanosrc/aio/../utils/../nn.h: |
|
||||
nanosrc/aio/../utils/fast.h: |
|
||||
nanosrc/aio/../utils/cont.h: |
|
||||
nanosrc/aio/../utils/attr.h: |
|
@ -1 +0,0 @@ |
|||||
Directory Stamp |
|
@ -1,58 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/core/ep.o: nanosrc/core/ep.c \ |
|
||||
nanosrc/core/../transport.h nanosrc/core/../nn.h \ |
|
||||
nanosrc/core/../nn_config.h nanosrc/core/../aio/fsm.h \ |
|
||||
nanosrc/core/../aio/../utils/queue.h nanosrc/core/../utils/list.h \ |
|
||||
nanosrc/core/../utils/msg.h nanosrc/core/../aio/../utils/chunkref.h \ |
|
||||
nanosrc/core/../aio/../utils/chunk.h \ |
|
||||
nanosrc/core/../aio/../utils/int.h nanosrc/core/ep.h \ |
|
||||
nanosrc/core/sock.h nanosrc/core/../protocol.h \ |
|
||||
nanosrc/core/../aio/ctx.h nanosrc/core/../aio/../utils/mutex.h \ |
|
||||
nanosrc/core/../aio/worker.h nanosrc/core/../aio/timerset.h \ |
|
||||
nanosrc/core/../aio/../utils/clock.h \ |
|
||||
nanosrc/core/../aio/worker_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/thread.h \ |
|
||||
nanosrc/core/../aio/../utils/thread_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/efd.h nanosrc/core/../aio/../utils/fd.h \ |
|
||||
nanosrc/core/../aio/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ |
|
||||
nanosrc/core/../aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ |
|
||||
nanosrc/core/../utils/err.h nanosrc/core/../aio/../utils/fast.h \ |
|
||||
nanosrc/core/../utils/cont.h nanosrc/core/../utils/attr.h |
|
||||
nanosrc/core/ep.c: |
|
||||
nanosrc/core/../transport.h: |
|
||||
nanosrc/core/../nn.h: |
|
||||
nanosrc/core/../nn_config.h: |
|
||||
nanosrc/core/../aio/fsm.h: |
|
||||
nanosrc/core/../aio/../utils/queue.h: |
|
||||
nanosrc/core/../utils/list.h: |
|
||||
nanosrc/core/../utils/msg.h: |
|
||||
nanosrc/core/../aio/../utils/chunkref.h: |
|
||||
nanosrc/core/../aio/../utils/chunk.h: |
|
||||
nanosrc/core/../aio/../utils/int.h: |
|
||||
nanosrc/core/ep.h: |
|
||||
nanosrc/core/sock.h: |
|
||||
nanosrc/core/../protocol.h: |
|
||||
nanosrc/core/../aio/ctx.h: |
|
||||
nanosrc/core/../aio/../utils/mutex.h: |
|
||||
nanosrc/core/../aio/worker.h: |
|
||||
nanosrc/core/../aio/timerset.h: |
|
||||
nanosrc/core/../aio/../utils/clock.h: |
|
||||
nanosrc/core/../aio/worker_posix.h: |
|
||||
nanosrc/core/../aio/../utils/thread.h: |
|
||||
nanosrc/core/../aio/../utils/thread_posix.h: |
|
||||
nanosrc/core/../aio/../utils/efd.h: |
|
||||
nanosrc/core/../aio/../utils/fd.h: |
|
||||
nanosrc/core/../aio/../utils/efd_pipe.h: |
|
||||
nanosrc/core/../aio/poller.h: |
|
||||
nanosrc/core/../aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/core/../aio/pool.h: |
|
||||
nanosrc/core/../utils/sem.h: |
|
||||
nanosrc/core/../utils/err.h: |
|
||||
nanosrc/core/../aio/../utils/fast.h: |
|
||||
nanosrc/core/../utils/cont.h: |
|
||||
nanosrc/core/../utils/attr.h: |
|
@ -1,54 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/core/epbase.o: nanosrc/core/epbase.c \ |
|
||||
nanosrc/core/../transport.h nanosrc/core/../nn.h \ |
|
||||
nanosrc/core/../nn_config.h nanosrc/core/../aio/fsm.h \ |
|
||||
nanosrc/core/../aio/../utils/queue.h nanosrc/core/../utils/list.h \ |
|
||||
nanosrc/core/../utils/msg.h nanosrc/core/../aio/../utils/chunkref.h \ |
|
||||
nanosrc/core/../aio/../utils/chunk.h \ |
|
||||
nanosrc/core/../aio/../utils/int.h nanosrc/core/ep.h \ |
|
||||
nanosrc/core/sock.h nanosrc/core/../protocol.h \ |
|
||||
nanosrc/core/../aio/ctx.h nanosrc/core/../aio/../utils/mutex.h \ |
|
||||
nanosrc/core/../aio/worker.h nanosrc/core/../aio/timerset.h \ |
|
||||
nanosrc/core/../aio/../utils/clock.h \ |
|
||||
nanosrc/core/../aio/worker_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/thread.h \ |
|
||||
nanosrc/core/../aio/../utils/thread_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/efd.h nanosrc/core/../aio/../utils/fd.h \ |
|
||||
nanosrc/core/../aio/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ |
|
||||
nanosrc/core/../aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ |
|
||||
nanosrc/core/../utils/attr.h |
|
||||
nanosrc/core/epbase.c: |
|
||||
nanosrc/core/../transport.h: |
|
||||
nanosrc/core/../nn.h: |
|
||||
nanosrc/core/../nn_config.h: |
|
||||
nanosrc/core/../aio/fsm.h: |
|
||||
nanosrc/core/../aio/../utils/queue.h: |
|
||||
nanosrc/core/../utils/list.h: |
|
||||
nanosrc/core/../utils/msg.h: |
|
||||
nanosrc/core/../aio/../utils/chunkref.h: |
|
||||
nanosrc/core/../aio/../utils/chunk.h: |
|
||||
nanosrc/core/../aio/../utils/int.h: |
|
||||
nanosrc/core/ep.h: |
|
||||
nanosrc/core/sock.h: |
|
||||
nanosrc/core/../protocol.h: |
|
||||
nanosrc/core/../aio/ctx.h: |
|
||||
nanosrc/core/../aio/../utils/mutex.h: |
|
||||
nanosrc/core/../aio/worker.h: |
|
||||
nanosrc/core/../aio/timerset.h: |
|
||||
nanosrc/core/../aio/../utils/clock.h: |
|
||||
nanosrc/core/../aio/worker_posix.h: |
|
||||
nanosrc/core/../aio/../utils/thread.h: |
|
||||
nanosrc/core/../aio/../utils/thread_posix.h: |
|
||||
nanosrc/core/../aio/../utils/efd.h: |
|
||||
nanosrc/core/../aio/../utils/fd.h: |
|
||||
nanosrc/core/../aio/../utils/efd_pipe.h: |
|
||||
nanosrc/core/../aio/poller.h: |
|
||||
nanosrc/core/../aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/core/../aio/pool.h: |
|
||||
nanosrc/core/../utils/sem.h: |
|
||||
nanosrc/core/../utils/attr.h: |
|
@ -1,132 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/core/global.o: nanosrc/core/global.c \ |
|
||||
nanosrc/core/../nn.h nanosrc/core/../nn_config.h \ |
|
||||
nanosrc/core/../transport.h nanosrc/core/../aio/fsm.h \ |
|
||||
nanosrc/core/../aio/../utils/queue.h nanosrc/core/../utils/list.h \ |
|
||||
nanosrc/core/../utils/msg.h nanosrc/core/../aio/../utils/chunkref.h \ |
|
||||
nanosrc/core/../aio/../utils/chunk.h \ |
|
||||
nanosrc/core/../aio/../utils/int.h nanosrc/core/../protocol.h \ |
|
||||
nanosrc/core/global.h nanosrc/core/sock.h nanosrc/core/../aio/ctx.h \ |
|
||||
nanosrc/core/../aio/../utils/mutex.h nanosrc/core/../aio/worker.h \ |
|
||||
nanosrc/core/../aio/timerset.h nanosrc/core/../aio/../utils/clock.h \ |
|
||||
nanosrc/core/../aio/worker_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/thread.h \ |
|
||||
nanosrc/core/../aio/../utils/thread_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/efd.h nanosrc/core/../aio/../utils/fd.h \ |
|
||||
nanosrc/core/../aio/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ |
|
||||
nanosrc/core/../aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ |
|
||||
nanosrc/core/ep.h nanosrc/core/../aio/timer.h \ |
|
||||
nanosrc/core/../utils/err.h nanosrc/core/../aio/../utils/fast.h \ |
|
||||
nanosrc/core/../utils/alloc.h nanosrc/core/../utils/cont.h \ |
|
||||
nanosrc/core/../utils/random.h nanosrc/core/../utils/glock.h \ |
|
||||
nanosrc/core/../utils/attr.h \ |
|
||||
nanosrc/core/../transports/inproc/inproc.h \ |
|
||||
nanosrc/core/../transports/ipc/ipc.h \ |
|
||||
nanosrc/core/../transports/tcp/tcp.h \ |
|
||||
nanosrc/core/../transports/ws/ws.h \ |
|
||||
nanosrc/core/../transports/tcpmux/tcpmux.h \ |
|
||||
nanosrc/core/../protocols/pair/pair.h \ |
|
||||
nanosrc/core/../protocols/pair/xpair.h \ |
|
||||
nanosrc/core/../protocols/pubsub/pub.h \ |
|
||||
nanosrc/core/../protocols/pubsub/sub.h \ |
|
||||
nanosrc/core/../protocols/pubsub/xpub.h \ |
|
||||
nanosrc/core/../protocols/pubsub/xsub.h \ |
|
||||
nanosrc/core/../protocols/reqrep/rep.h \ |
|
||||
nanosrc/core/../protocols/reqrep/xrep.h \ |
|
||||
nanosrc/core/../protocols/reqrep/../../utils/hash.h \ |
|
||||
nanosrc/core/../protocols/reqrep/../utils/fq.h \ |
|
||||
nanosrc/core/../protocols/reqrep/../utils/priolist.h \ |
|
||||
nanosrc/core/../protocols/reqrep/req.h \ |
|
||||
nanosrc/core/../protocols/reqrep/xreq.h \ |
|
||||
nanosrc/core/../protocols/reqrep/../utils/lb.h \ |
|
||||
nanosrc/core/../protocols/reqrep/task.h \ |
|
||||
nanosrc/core/../protocols/reqrep/../../reqrep.h \ |
|
||||
nanosrc/core/../protocols/pipeline/push.h \ |
|
||||
nanosrc/core/../protocols/pipeline/pull.h \ |
|
||||
nanosrc/core/../protocols/pipeline/xpush.h \ |
|
||||
nanosrc/core/../protocols/pipeline/xpull.h \ |
|
||||
nanosrc/core/../protocols/survey/respondent.h \ |
|
||||
nanosrc/core/../protocols/survey/surveyor.h \ |
|
||||
nanosrc/core/../protocols/survey/xrespondent.h \ |
|
||||
nanosrc/core/../protocols/survey/xsurveyor.h \ |
|
||||
nanosrc/core/../protocols/survey/../utils/dist.h \ |
|
||||
nanosrc/core/../protocols/bus/bus.h \ |
|
||||
nanosrc/core/../protocols/bus/xbus.h nanosrc/core/../pubsub.h \ |
|
||||
nanosrc/core/../pipeline.h |
|
||||
nanosrc/core/global.c: |
|
||||
nanosrc/core/../nn.h: |
|
||||
nanosrc/core/../nn_config.h: |
|
||||
nanosrc/core/../transport.h: |
|
||||
nanosrc/core/../aio/fsm.h: |
|
||||
nanosrc/core/../aio/../utils/queue.h: |
|
||||
nanosrc/core/../utils/list.h: |
|
||||
nanosrc/core/../utils/msg.h: |
|
||||
nanosrc/core/../aio/../utils/chunkref.h: |
|
||||
nanosrc/core/../aio/../utils/chunk.h: |
|
||||
nanosrc/core/../aio/../utils/int.h: |
|
||||
nanosrc/core/../protocol.h: |
|
||||
nanosrc/core/global.h: |
|
||||
nanosrc/core/sock.h: |
|
||||
nanosrc/core/../aio/ctx.h: |
|
||||
nanosrc/core/../aio/../utils/mutex.h: |
|
||||
nanosrc/core/../aio/worker.h: |
|
||||
nanosrc/core/../aio/timerset.h: |
|
||||
nanosrc/core/../aio/../utils/clock.h: |
|
||||
nanosrc/core/../aio/worker_posix.h: |
|
||||
nanosrc/core/../aio/../utils/thread.h: |
|
||||
nanosrc/core/../aio/../utils/thread_posix.h: |
|
||||
nanosrc/core/../aio/../utils/efd.h: |
|
||||
nanosrc/core/../aio/../utils/fd.h: |
|
||||
nanosrc/core/../aio/../utils/efd_pipe.h: |
|
||||
nanosrc/core/../aio/poller.h: |
|
||||
nanosrc/core/../aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/core/../aio/pool.h: |
|
||||
nanosrc/core/../utils/sem.h: |
|
||||
nanosrc/core/ep.h: |
|
||||
nanosrc/core/../aio/timer.h: |
|
||||
nanosrc/core/../utils/err.h: |
|
||||
nanosrc/core/../aio/../utils/fast.h: |
|
||||
nanosrc/core/../utils/alloc.h: |
|
||||
nanosrc/core/../utils/cont.h: |
|
||||
nanosrc/core/../utils/random.h: |
|
||||
nanosrc/core/../utils/glock.h: |
|
||||
nanosrc/core/../utils/attr.h: |
|
||||
nanosrc/core/../transports/inproc/inproc.h: |
|
||||
nanosrc/core/../transports/ipc/ipc.h: |
|
||||
nanosrc/core/../transports/tcp/tcp.h: |
|
||||
nanosrc/core/../transports/ws/ws.h: |
|
||||
nanosrc/core/../transports/tcpmux/tcpmux.h: |
|
||||
nanosrc/core/../protocols/pair/pair.h: |
|
||||
nanosrc/core/../protocols/pair/xpair.h: |
|
||||
nanosrc/core/../protocols/pubsub/pub.h: |
|
||||
nanosrc/core/../protocols/pubsub/sub.h: |
|
||||
nanosrc/core/../protocols/pubsub/xpub.h: |
|
||||
nanosrc/core/../protocols/pubsub/xsub.h: |
|
||||
nanosrc/core/../protocols/reqrep/rep.h: |
|
||||
nanosrc/core/../protocols/reqrep/xrep.h: |
|
||||
nanosrc/core/../protocols/reqrep/../../utils/hash.h: |
|
||||
nanosrc/core/../protocols/reqrep/../utils/fq.h: |
|
||||
nanosrc/core/../protocols/reqrep/../utils/priolist.h: |
|
||||
nanosrc/core/../protocols/reqrep/req.h: |
|
||||
nanosrc/core/../protocols/reqrep/xreq.h: |
|
||||
nanosrc/core/../protocols/reqrep/../utils/lb.h: |
|
||||
nanosrc/core/../protocols/reqrep/task.h: |
|
||||
nanosrc/core/../protocols/reqrep/../../reqrep.h: |
|
||||
nanosrc/core/../protocols/pipeline/push.h: |
|
||||
nanosrc/core/../protocols/pipeline/pull.h: |
|
||||
nanosrc/core/../protocols/pipeline/xpush.h: |
|
||||
nanosrc/core/../protocols/pipeline/xpull.h: |
|
||||
nanosrc/core/../protocols/survey/respondent.h: |
|
||||
nanosrc/core/../protocols/survey/surveyor.h: |
|
||||
nanosrc/core/../protocols/survey/xrespondent.h: |
|
||||
nanosrc/core/../protocols/survey/xsurveyor.h: |
|
||||
nanosrc/core/../protocols/survey/../utils/dist.h: |
|
||||
nanosrc/core/../protocols/bus/bus.h: |
|
||||
nanosrc/core/../protocols/bus/xbus.h: |
|
||||
nanosrc/core/../pubsub.h: |
|
||||
nanosrc/core/../pipeline.h: |
|
@ -1,55 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/core/pipe.o: nanosrc/core/pipe.c \ |
|
||||
nanosrc/core/../transport.h nanosrc/core/../nn.h \ |
|
||||
nanosrc/core/../nn_config.h nanosrc/core/../aio/fsm.h \ |
|
||||
nanosrc/core/../aio/../utils/queue.h nanosrc/core/../utils/list.h \ |
|
||||
nanosrc/core/../utils/msg.h nanosrc/core/../aio/../utils/chunkref.h \ |
|
||||
nanosrc/core/../aio/../utils/chunk.h \ |
|
||||
nanosrc/core/../aio/../utils/int.h nanosrc/core/../protocol.h \ |
|
||||
nanosrc/core/sock.h nanosrc/core/../aio/ctx.h \ |
|
||||
nanosrc/core/../aio/../utils/mutex.h nanosrc/core/../aio/worker.h \ |
|
||||
nanosrc/core/../aio/timerset.h nanosrc/core/../aio/../utils/clock.h \ |
|
||||
nanosrc/core/../aio/worker_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/thread.h \ |
|
||||
nanosrc/core/../aio/../utils/thread_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/efd.h nanosrc/core/../aio/../utils/fd.h \ |
|
||||
nanosrc/core/../aio/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ |
|
||||
nanosrc/core/../aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ |
|
||||
nanosrc/core/ep.h nanosrc/core/../utils/err.h \ |
|
||||
nanosrc/core/../aio/../utils/fast.h |
|
||||
nanosrc/core/pipe.c: |
|
||||
nanosrc/core/../transport.h: |
|
||||
nanosrc/core/../nn.h: |
|
||||
nanosrc/core/../nn_config.h: |
|
||||
nanosrc/core/../aio/fsm.h: |
|
||||
nanosrc/core/../aio/../utils/queue.h: |
|
||||
nanosrc/core/../utils/list.h: |
|
||||
nanosrc/core/../utils/msg.h: |
|
||||
nanosrc/core/../aio/../utils/chunkref.h: |
|
||||
nanosrc/core/../aio/../utils/chunk.h: |
|
||||
nanosrc/core/../aio/../utils/int.h: |
|
||||
nanosrc/core/../protocol.h: |
|
||||
nanosrc/core/sock.h: |
|
||||
nanosrc/core/../aio/ctx.h: |
|
||||
nanosrc/core/../aio/../utils/mutex.h: |
|
||||
nanosrc/core/../aio/worker.h: |
|
||||
nanosrc/core/../aio/timerset.h: |
|
||||
nanosrc/core/../aio/../utils/clock.h: |
|
||||
nanosrc/core/../aio/worker_posix.h: |
|
||||
nanosrc/core/../aio/../utils/thread.h: |
|
||||
nanosrc/core/../aio/../utils/thread_posix.h: |
|
||||
nanosrc/core/../aio/../utils/efd.h: |
|
||||
nanosrc/core/../aio/../utils/fd.h: |
|
||||
nanosrc/core/../aio/../utils/efd_pipe.h: |
|
||||
nanosrc/core/../aio/poller.h: |
|
||||
nanosrc/core/../aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/core/../aio/pool.h: |
|
||||
nanosrc/core/../utils/sem.h: |
|
||||
nanosrc/core/ep.h: |
|
||||
nanosrc/core/../utils/err.h: |
|
||||
nanosrc/core/../aio/../utils/fast.h: |
|
@ -1,15 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/core/poll.o: nanosrc/core/poll.c \ |
|
||||
nanosrc/core/../nn.h nanosrc/core/../nn_config.h \ |
|
||||
nanosrc/core/../utils/alloc.h nanosrc/core/../utils/fast.h \ |
|
||||
nanosrc/core/../utils/err.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h |
|
||||
nanosrc/core/poll.c: |
|
||||
nanosrc/core/../nn.h: |
|
||||
nanosrc/core/../nn_config.h: |
|
||||
nanosrc/core/../utils/alloc.h: |
|
||||
nanosrc/core/../utils/fast.h: |
|
||||
nanosrc/core/../utils/err.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
@ -1,59 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/core/sock.o: nanosrc/core/sock.c \ |
|
||||
nanosrc/core/../protocol.h nanosrc/core/../utils/msg.h \ |
|
||||
nanosrc/core/../utils/chunkref.h nanosrc/core/../utils/chunk.h \ |
|
||||
nanosrc/core/../utils/int.h nanosrc/core/../utils/list.h \ |
|
||||
nanosrc/core/../transport.h nanosrc/core/../nn.h \ |
|
||||
nanosrc/core/../nn_config.h nanosrc/core/../aio/fsm.h \ |
|
||||
nanosrc/core/../aio/../utils/queue.h nanosrc/core/sock.h \ |
|
||||
nanosrc/core/../aio/ctx.h nanosrc/core/../aio/../utils/mutex.h \ |
|
||||
nanosrc/core/../aio/worker.h nanosrc/core/../aio/timerset.h \ |
|
||||
nanosrc/core/../aio/../utils/clock.h \ |
|
||||
nanosrc/core/../aio/worker_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/thread.h \ |
|
||||
nanosrc/core/../utils/thread_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/efd.h nanosrc/core/../utils/fd.h \ |
|
||||
nanosrc/core/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ |
|
||||
nanosrc/core/../aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ |
|
||||
nanosrc/core/global.h nanosrc/core/ep.h nanosrc/core/../utils/err.h \ |
|
||||
nanosrc/core/../utils/fast.h nanosrc/core/../utils/cont.h \ |
|
||||
nanosrc/core/../utils/alloc.h |
|
||||
nanosrc/core/sock.c: |
|
||||
nanosrc/core/../protocol.h: |
|
||||
nanosrc/core/../utils/msg.h: |
|
||||
nanosrc/core/../utils/chunkref.h: |
|
||||
nanosrc/core/../utils/chunk.h: |
|
||||
nanosrc/core/../utils/int.h: |
|
||||
nanosrc/core/../utils/list.h: |
|
||||
nanosrc/core/../transport.h: |
|
||||
nanosrc/core/../nn.h: |
|
||||
nanosrc/core/../nn_config.h: |
|
||||
nanosrc/core/../aio/fsm.h: |
|
||||
nanosrc/core/../aio/../utils/queue.h: |
|
||||
nanosrc/core/sock.h: |
|
||||
nanosrc/core/../aio/ctx.h: |
|
||||
nanosrc/core/../aio/../utils/mutex.h: |
|
||||
nanosrc/core/../aio/worker.h: |
|
||||
nanosrc/core/../aio/timerset.h: |
|
||||
nanosrc/core/../aio/../utils/clock.h: |
|
||||
nanosrc/core/../aio/worker_posix.h: |
|
||||
nanosrc/core/../aio/../utils/thread.h: |
|
||||
nanosrc/core/../utils/thread_posix.h: |
|
||||
nanosrc/core/../aio/../utils/efd.h: |
|
||||
nanosrc/core/../utils/fd.h: |
|
||||
nanosrc/core/../utils/efd_pipe.h: |
|
||||
nanosrc/core/../aio/poller.h: |
|
||||
nanosrc/core/../aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/core/../aio/pool.h: |
|
||||
nanosrc/core/../utils/sem.h: |
|
||||
nanosrc/core/global.h: |
|
||||
nanosrc/core/ep.h: |
|
||||
nanosrc/core/../utils/err.h: |
|
||||
nanosrc/core/../utils/fast.h: |
|
||||
nanosrc/core/../utils/cont.h: |
|
||||
nanosrc/core/../utils/alloc.h: |
|
@ -1,54 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/core/sockbase.o: nanosrc/core/sockbase.c \ |
|
||||
nanosrc/core/../protocol.h nanosrc/core/../utils/msg.h \ |
|
||||
nanosrc/core/../utils/chunkref.h nanosrc/core/../utils/chunk.h \ |
|
||||
nanosrc/core/../utils/int.h nanosrc/core/../utils/list.h \ |
|
||||
nanosrc/core/sock.h nanosrc/core/../transport.h nanosrc/core/../nn.h \ |
|
||||
nanosrc/core/../nn_config.h nanosrc/core/../aio/fsm.h \ |
|
||||
nanosrc/core/../aio/../utils/queue.h nanosrc/core/../aio/ctx.h \ |
|
||||
nanosrc/core/../aio/../utils/mutex.h nanosrc/core/../aio/worker.h \ |
|
||||
nanosrc/core/../aio/timerset.h nanosrc/core/../aio/../utils/clock.h \ |
|
||||
nanosrc/core/../aio/worker_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/thread.h \ |
|
||||
nanosrc/core/../utils/thread_posix.h \ |
|
||||
nanosrc/core/../aio/../utils/efd.h nanosrc/core/../utils/fd.h \ |
|
||||
nanosrc/core/../utils/efd_pipe.h nanosrc/core/../aio/poller.h \ |
|
||||
nanosrc/core/../aio/poller_poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h \ |
|
||||
nanosrc/core/../aio/pool.h nanosrc/core/../utils/sem.h \ |
|
||||
nanosrc/core/../utils/err.h nanosrc/core/../utils/fast.h \ |
|
||||
nanosrc/core/../utils/attr.h |
|
||||
nanosrc/core/sockbase.c: |
|
||||
nanosrc/core/../protocol.h: |
|
||||
nanosrc/core/../utils/msg.h: |
|
||||
nanosrc/core/../utils/chunkref.h: |
|
||||
nanosrc/core/../utils/chunk.h: |
|
||||
nanosrc/core/../utils/int.h: |
|
||||
nanosrc/core/../utils/list.h: |
|
||||
nanosrc/core/sock.h: |
|
||||
nanosrc/core/../transport.h: |
|
||||
nanosrc/core/../nn.h: |
|
||||
nanosrc/core/../nn_config.h: |
|
||||
nanosrc/core/../aio/fsm.h: |
|
||||
nanosrc/core/../aio/../utils/queue.h: |
|
||||
nanosrc/core/../aio/ctx.h: |
|
||||
nanosrc/core/../aio/../utils/mutex.h: |
|
||||
nanosrc/core/../aio/worker.h: |
|
||||
nanosrc/core/../aio/timerset.h: |
|
||||
nanosrc/core/../aio/../utils/clock.h: |
|
||||
nanosrc/core/../aio/worker_posix.h: |
|
||||
nanosrc/core/../aio/../utils/thread.h: |
|
||||
nanosrc/core/../utils/thread_posix.h: |
|
||||
nanosrc/core/../aio/../utils/efd.h: |
|
||||
nanosrc/core/../utils/fd.h: |
|
||||
nanosrc/core/../utils/efd_pipe.h: |
|
||||
nanosrc/core/../aio/poller.h: |
|
||||
nanosrc/core/../aio/poller_poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
||||
nanosrc/core/../aio/pool.h: |
|
||||
nanosrc/core/../utils/sem.h: |
|
||||
nanosrc/core/../utils/err.h: |
|
||||
nanosrc/core/../utils/fast.h: |
|
||||
nanosrc/core/../utils/attr.h: |
|
@ -1,19 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/core/symbol.o: nanosrc/core/symbol.c \ |
|
||||
nanosrc/core/../nn.h nanosrc/core/../nn_config.h \ |
|
||||
nanosrc/core/../inproc.h nanosrc/core/../ipc.h nanosrc/core/../tcp.h \ |
|
||||
nanosrc/core/../pair.h nanosrc/core/../pubsub.h \ |
|
||||
nanosrc/core/../reqrep.h nanosrc/core/../pipeline.h \ |
|
||||
nanosrc/core/../survey.h nanosrc/core/../bus.h |
|
||||
nanosrc/core/symbol.c: |
|
||||
nanosrc/core/../nn.h: |
|
||||
nanosrc/core/../nn_config.h: |
|
||||
nanosrc/core/../inproc.h: |
|
||||
nanosrc/core/../ipc.h: |
|
||||
nanosrc/core/../tcp.h: |
|
||||
nanosrc/core/../pair.h: |
|
||||
nanosrc/core/../pubsub.h: |
|
||||
nanosrc/core/../reqrep.h: |
|
||||
nanosrc/core/../pipeline.h: |
|
||||
nanosrc/core/../survey.h: |
|
||||
nanosrc/core/../bus.h: |
|
@ -1,18 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/devices/device.o: nanosrc/devices/device.c \ |
|
||||
nanosrc/devices/../nn.h nanosrc/devices/../nn_config.h \ |
|
||||
nanosrc/devices/../utils/err.h nanosrc/devices/../utils/fast.h \ |
|
||||
nanosrc/devices/../utils/fd.h nanosrc/devices/../utils/attr.h \ |
|
||||
nanosrc/devices/device.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h |
|
||||
nanosrc/devices/device.c: |
|
||||
nanosrc/devices/../nn.h: |
|
||||
nanosrc/devices/../nn_config.h: |
|
||||
nanosrc/devices/../utils/err.h: |
|
||||
nanosrc/devices/../utils/fast.h: |
|
||||
nanosrc/devices/../utils/fd.h: |
|
||||
nanosrc/devices/../utils/attr.h: |
|
||||
nanosrc/devices/device.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
@ -1 +0,0 @@ |
|||||
Directory Stamp |
|
@ -1,33 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/devices/tcpmuxd.o: nanosrc/devices/tcpmuxd.c \ |
|
||||
nanosrc/devices/../nn.h nanosrc/devices/../nn_config.h \ |
|
||||
nanosrc/devices/../utils/thread.h \ |
|
||||
nanosrc/devices/../utils/thread_posix.h \ |
|
||||
nanosrc/devices/../utils/attr.h nanosrc/devices/../utils/err.h \ |
|
||||
nanosrc/devices/../utils/fast.h nanosrc/devices/../utils/int.h \ |
|
||||
nanosrc/devices/../utils/cont.h nanosrc/devices/../utils/wire.h \ |
|
||||
nanosrc/devices/../utils/alloc.h nanosrc/devices/../utils/list.h \ |
|
||||
nanosrc/devices/../utils/mutex.h nanosrc/devices/../utils/closefd.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/tcp.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h \ |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h |
|
||||
nanosrc/devices/tcpmuxd.c: |
|
||||
nanosrc/devices/../nn.h: |
|
||||
nanosrc/devices/../nn_config.h: |
|
||||
nanosrc/devices/../utils/thread.h: |
|
||||
nanosrc/devices/../utils/thread_posix.h: |
|
||||
nanosrc/devices/../utils/attr.h: |
|
||||
nanosrc/devices/../utils/err.h: |
|
||||
nanosrc/devices/../utils/fast.h: |
|
||||
nanosrc/devices/../utils/int.h: |
|
||||
nanosrc/devices/../utils/cont.h: |
|
||||
nanosrc/devices/../utils/wire.h: |
|
||||
nanosrc/devices/../utils/alloc.h: |
|
||||
nanosrc/devices/../utils/list.h: |
|
||||
nanosrc/devices/../utils/mutex.h: |
|
||||
nanosrc/devices/../utils/closefd.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/netinet/tcp.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/time.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/poll.h: |
|
||||
/Users/jimbolaptop/Downloads/nacl_sdk/pepper_44/include/pnacl/sys/poll.h: |
|
@ -1,37 +0,0 @@ |
|||||
# Updated by fix_deps.py |
|
||||
pnacl/Release/nanosrc/protocols/bus/bus.o: nanosrc/protocols/bus/bus.c \ |
|
||||
nanosrc/protocols/bus/bus.h nanosrc/protocols/bus/../../protocol.h \ |
|
||||
nanosrc/protocols/bus/../../utils/msg.h \ |
|
||||
nanosrc/protocols/bus/../../utils/chunkref.h \ |
|
||||
nanosrc/protocols/bus/../../utils/chunk.h \ |
|
||||
nanosrc/protocols/bus/../../utils/int.h \ |
|
||||
nanosrc/protocols/bus/../../utils/list.h nanosrc/protocols/bus/xbus.h \ |
|
||||
nanosrc/protocols/bus/../utils/dist.h \ |
|
||||
nanosrc/protocols/bus/../utils/fq.h \ |
|
||||
nanosrc/protocols/bus/../utils/priolist.h \ |
|
||||
nanosrc/protocols/bus/../../nn.h \ |
|
||||
nanosrc/protocols/bus/../../nn_config.h \ |
|
||||
nanosrc/protocols/bus/../../bus.h \ |
|
||||
nanosrc/protocols/bus/../../utils/cont.h \ |
|
||||
nanosrc/protocols/bus/../../utils/alloc.h \ |
|
||||
nanosrc/protocols/bus/../../utils/err.h \ |
|
||||
nanosrc/protocols/bus/../../utils/fast.h |
|
||||
nanosrc/protocols/bus/bus.c: |
|
||||
nanosrc/protocols/bus/bus.h: |
|
||||
nanosrc/protocols/bus/../../protocol.h: |
|
||||
nanosrc/protocols/bus/../../utils/msg.h: |
|
||||
nanosrc/protocols/bus/../../utils/chunkref.h: |
|
||||
nanosrc/protocols/bus/../../utils/chunk.h: |
|
||||
nanosrc/protocols/bus/../../utils/int.h: |
|
||||
nanosrc/protocols/bus/../../utils/list.h: |
|
||||
nanosrc/protocols/bus/xbus.h: |
|
||||
nanosrc/protocols/bus/../utils/dist.h: |
|
||||
nanosrc/protocols/bus/../utils/fq.h: |
|
||||
nanosrc/protocols/bus/../utils/priolist.h: |
|
||||
nanosrc/protocols/bus/../../nn.h: |
|
||||
nanosrc/protocols/bus/../../nn_config.h: |
|
||||
nanosrc/protocols/bus/../../bus.h: |
|
||||
nanosrc/protocols/bus/../../utils/cont.h: |
|
||||
nanosrc/protocols/bus/../../utils/alloc.h: |
|
||||
nanosrc/protocols/bus/../../utils/err.h: |
|
||||
nanosrc/protocols/bus/../../utils/fast.h: |
|
@ -1 +0,0 @@ |
|||||
Directory Stamp |
|
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue