aboutsummaryrefslogtreecommitdiffstats
path: root/misc/nist_tests/Makefile
blob: 6d0ebb78f6d7f96d659eb046af7752ea07ea3ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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