diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-05-04 10:42:22 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-05-04 10:42:22 -0700 |
commit | 54c47a1e03b5a7446315fc2cff64fb93fd85c5b7 (patch) | |
tree | 9298a528541fe19c7de8ac086da0b6b39b319757 /attic/historic/anode/libanode/Makefile | |
parent | 6bb855873d98309cf7ae9ed117615638366e5d8b (diff) | |
download | infinitytier-54c47a1e03b5a7446315fc2cff64fb93fd85c5b7.tar.gz infinitytier-54c47a1e03b5a7446315fc2cff64fb93fd85c5b7.zip |
Add some historic code just for the heck of it.
Diffstat (limited to 'attic/historic/anode/libanode/Makefile')
-rw-r--r-- | attic/historic/anode/libanode/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/attic/historic/anode/libanode/Makefile b/attic/historic/anode/libanode/Makefile new file mode 100644 index 00000000..088587bd --- /dev/null +++ b/attic/historic/anode/libanode/Makefile @@ -0,0 +1,33 @@ +SYSNAME:=${shell uname} +SYSNAME!=uname +include ../config.mk.${SYSNAME} + +LIBANODE_OBJS= \ + impl/aes.o \ + impl/dictionary.o \ + impl/dns_txt.o \ + impl/ec.o \ + impl/environment.o \ + impl/misc.o \ + impl/thread.o \ + address.o \ + aes_digest.o \ + errors.o \ + identity.o \ + network_address.o \ + secure_random.o \ + system_transport.o \ + uri.o +# zone.o + +all: $(LIBANODE_OBJS) + ar rcs libanode.a $(LIBANODE_OBJS) + ranlib libanode.a + $(CC) $(CFLAGS) -o utils/anode-make-identity utils/anode-make-identity.c $(LIBANODE_OBJS) $(LIBANODE_LIBS) + +clean: force + rm -f $(LIBANODE_OBJS) + rm -f libanode.$(DLLEXT) libanode.a + rm -f utils/anode-make-identity + +force: ; |