aboutsummaryrefslogtreecommitdiffstats
path: root/src/cms/Makefile
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-28 20:58:26 +0000
committerlloyd <[email protected]>2008-09-28 20:58:26 +0000
commit3948d38e2bef3f42169f96a17cc5daa6e03fb575 (patch)
tree1fe40baedc9e49a5d734b100790f79ac70839513 /src/cms/Makefile
parentf5ebea8d593d2f6d5b536ddb978f44d80d4e873f (diff)
Move CMS code into main src tree, though it currently doesn't compile (needs further updating)
Diffstat (limited to 'src/cms/Makefile')
-rw-r--r--src/cms/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/cms/Makefile b/src/cms/Makefile
new file mode 100644
index 000000000..143c0d741
--- /dev/null
+++ b/src/cms/Makefile
@@ -0,0 +1,12 @@
+
+SRCS=cms_algo.cpp cms_comp.cpp cms_dalg.cpp cms_dec.cpp cms_ealg.cpp cms_enc.cpp
+OBJS=cms_algo.o cms_comp.o cms_dalg.o cms_dec.o cms_ealg.o cms_enc.o
+
+libcms.a: $(OBJS)
+ ar libcms.a $(OBJS)
+
+%.o: %.cpp
+ g++ -I. $(shell botan-config --cflags) -c $? -o $@
+
+clean:
+ rm -f *.o