aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/GNUmakefile
blob: b034cac78c7e622e04310abf2483db3ffbaca87e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

BOTAN_CONFIG = botan-config

CXX       = g++-4.8.0-r187608
CFLAGS    = -O2 -ansi -std=c++0x -W -Wall -I../../build/include
LIBS      = -L../.. -lbotan-1.99

SRCS=$(wildcard *.cpp)

PROGS=$(patsubst %.cpp,%,$(SRCS))

all: $(PROGS)

clean:
	@rm -f $(PROGS)

%: %.cpp
	$(CXX) $(CFLAGS) $? $(LIBS) -o $@

eax_test: eax_test.cpp
	$(CXX) $(CFLAGS) $? $(LIBS) -lboost_regex -o $@

asio_tls_server: asio_tls_server.cpp credentials.h
	$(CXX) $(CFLAGS) $< $(LIBS) -lboost_thread -lboost_system -o $@