diff options
Diffstat (limited to 'netconf/tests/Makefile')
-rw-r--r-- | netconf/tests/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/netconf/tests/Makefile b/netconf/tests/Makefile new file mode 100644 index 00000000..b90ea058 --- /dev/null +++ b/netconf/tests/Makefile @@ -0,0 +1,9 @@ +# Builds tests.cpp for Redis-based netconf master tests on Linux or OSX + +all: FORCE + $(CXX) -g -o tests tests.cpp ../../node/Utils.o ../../node/Identity.o ../../node/C25519.o ../../node/SHA512.o ../../node/Salsa20.o ../../node/CertificateOfMembership.o ../../node/Dictionary.o + +clean: + rm -rf tests *.o *.dSYM + +FORCE: |