diff options
Diffstat (limited to 'checks/nist_tests/Makefile')
-rw-r--r-- | checks/nist_tests/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/checks/nist_tests/Makefile b/checks/nist_tests/Makefile new file mode 100644 index 000000000..6d0ebb78f --- /dev/null +++ b/checks/nist_tests/Makefile @@ -0,0 +1,13 @@ + +BOTAN_CONFIG=botan-config + +CC=g++ +FLAGS=-g -Os -W -Wall -ansi +LDFLAGS=$(shell $(BOTAN_CONFIG) --libs) +CFLAGS=$(shell $(BOTAN_CONFIG) --cflags) + +x509test: x509test.cpp + $(CC) $(FLAGS) $(CFLAGS) x509test.cpp $(LDFLAGS) -o x509test + +clean: + rm -f x509test |