aboutsummaryrefslogtreecommitdiffstats
path: root/examples/GNUmakefile
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-04-08 14:57:49 +0000
committerlloyd <[email protected]>2011-04-08 14:57:49 +0000
commitfc62f7f284387a180e42402e8706965a666efba7 (patch)
tree9abe74c670993c111bd3a5bf5fb568767f9e75be /examples/GNUmakefile
parent438f3eb73e494fcab82b239452d712bec06f48c9 (diff)
More pubkey doc updates
Diffstat (limited to 'examples/GNUmakefile')
-rw-r--r--examples/GNUmakefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/examples/GNUmakefile b/examples/GNUmakefile
deleted file mode 100644
index c386f4390..000000000
--- a/examples/GNUmakefile
+++ /dev/null
@@ -1,21 +0,0 @@
-
-BOTAN_CONFIG = botan-config
-
-CXX = g++
-CFLAGS = -O2 -ansi -W -Wall -I../build/include
-LIBS = -L.. -lbotan
-
-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 $@