aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/GNUmakefile
blob: eb49741f45da6d626daf34836213b1f3edbff466 (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
25
26
27

# You must modify generated botan-17-config for workspace builds
# (see that file for details), or else install Botan and direct
# this to the installed system version.
BOTAN_CONFIG = ../../build/botan-17-config --prefix=../..

# If installed:
#BOTAN_CONFIG = botan-config

CXX       = g++
CFLAGS    = -O2 -ansi -W -Wall $(shell $(BOTAN_CONFIG) --cflags)
LIBS      = $(shell $(BOTAN_CONFIG) --libs)

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 $@