aboutsummaryrefslogtreecommitdiffstats
path: root/checks/nist_tests/Makefile
blob: 52dc340c90f5c9dab8e53b5bf79304818481c741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

BOTAN_CONFIG=../../build/botan-config-1.10

CC=g++
FLAGS=-g -Os -W -Wall -ansi
LDFLAGS=$(shell $(BOTAN_CONFIG) --libs) -L../.. -lbotan-1.10
CFLAGS=$(shell $(BOTAN_CONFIG) --cflags) -I../../build/include

x509test: x509test.cpp
	$(CC) $(FLAGS) $(CFLAGS) x509test.cpp $(LDFLAGS) -o x509test

clean:
	rm -f x509test