aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/GNUmakefile
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-10-14 22:33:14 +0000
committerlloyd <[email protected]>2009-10-14 22:33:14 +0000
commit28f875732c6379531e28c12091c44031941e0dff (patch)
treee144c77e73691a8ada070e6052688377c73ad44b /doc/examples/GNUmakefile
parent0b23f4071f21564fb63d7b11768070658c4b8f77 (diff)
Fix some minor compilation issues in the examples
Diffstat (limited to 'doc/examples/GNUmakefile')
-rw-r--r--doc/examples/GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/GNUmakefile b/doc/examples/GNUmakefile
index d854c81d8..44fcfeea5 100644
--- a/doc/examples/GNUmakefile
+++ b/doc/examples/GNUmakefile
@@ -2,8 +2,8 @@
BOTAN_CONFIG = botan-config
CXX = g++
-CFLAGS = -O2 -ansi -W -Wall $(shell $(BOTAN_CONFIG) --cflags)
-LIBS = $(shell $(BOTAN_CONFIG) --libs)
+CFLAGS = -O2 -ansi -W -Wall -I../../build/include
+LIBS = -L../.. -lbotan
SRCS=$(wildcard *.cpp)