diff options
Diffstat (limited to 'doc/examples/GNUmakefile')
-rw-r--r-- | doc/examples/GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/GNUmakefile b/doc/examples/GNUmakefile index 4b45af0a6..0318e3016 100644 --- a/doc/examples/GNUmakefile +++ b/doc/examples/GNUmakefile @@ -5,9 +5,9 @@ BOTAN_DIR = ../.. CXX = g++ CFLAGS = -O2 -ansi -W -Wall -INCLUDES = $(shell $(BOTAN_DIR)/botan-config --cflags) +INCLUDES = $(shell $(BOTAN_DIR)/botan-17-config --cflags) -LIBS = $(shell $(BOTAN_DIR)/botan-config --libs) +LIBS = $(shell $(BOTAN_DIR)/botan-17-config --libs) FLAGS = $(INCLUDES) $(CFLAGS) -I$(BOTAN_DIR)/build/include -L$(BOTAN_DIR) SRCS=$(wildcard *.cpp) |