aboutsummaryrefslogtreecommitdiffstats
path: root/moon-abe/cpabe-0.11/Makefile
diff options
context:
space:
mode:
authorWuKong <rebirthmonkey@gmail.com>2015-09-04 09:25:34 +0200
committerWuKong <rebirthmonkey@gmail.com>2015-09-04 09:25:34 +0200
commit3baeb11a8fbcfcdbc31976d421f17b85503b3ecd (patch)
tree04891d88c1127148f1b390b5a24414e85b270aee /moon-abe/cpabe-0.11/Makefile
parent67c5b73910f5fc437429c356978081b252a59480 (diff)
init attribute-based encryption
Change-Id: Iba1a3d722110abf747a0fba366f3ebc911d25b25
Diffstat (limited to 'moon-abe/cpabe-0.11/Makefile')
-rw-r--r--moon-abe/cpabe-0.11/Makefile134
1 files changed, 134 insertions, 0 deletions
diff --git a/moon-abe/cpabe-0.11/Makefile b/moon-abe/cpabe-0.11/Makefile
new file mode 100644
index 00000000..d62f6df5
--- /dev/null
+++ b/moon-abe/cpabe-0.11/Makefile
@@ -0,0 +1,134 @@
+top_srcdir = .
+prefix = /usr/local
+exec_prefix = ${prefix}
+bindir = ${exec_prefix}/bin
+mandir = ${prefix}/share/man
+
+CC = gcc
+CFLAGS = -O3 -Wall \
+ -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include \
+ \
+ -I/usr/include/pbc -I/usr/local/include/pbc \
+ \
+ -DPACKAGE_NAME=\"cpabe\" -DPACKAGE_TARNAME=\"cpabe\" -DPACKAGE_VERSION=\"0.11\" -DPACKAGE_STRING=\"cpabe\ 0.11\" -DPACKAGE_BUGREPORT=\"bethenco@cs.berkeley.edu\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_FCNTL_H=1 -DHAVE_STDDEF_H=1 -DHAVE_STRING_H=1 -DHAVE_STDLIB_H=1 -DHAVE_MALLOC=1 -DLSTAT_FOLLOWS_SLASHED_SYMLINK=1 -DHAVE_VPRINTF=1 -DHAVE_LIBCRYPTO=1 -DHAVE_LIBCRYPTO=1 -DHAVE_STRCHR=1 -DHAVE_STRDUP=1 -DHAVE_MEMSET=1 -DHAVE_GMP=1 -DHAVE_PBC=1 -DHAVE_BSWABE=1
+LDFLAGS = -O3 -Wall \
+ -L/usr/local/lib -lglib-2.0 \
+ -Wl,-rpath /usr/local/lib -lpbc \
+ -lbswabe \
+ -Wl,-rpath /usr/local/lib -lgmp \
+ -lcrypto -lcrypto
+
+DISTNAME = cpabe-0.11
+
+TARGETS = cpabe-setup cpabe-enc cpabe-keygen cpabe-dec cpabe-policyList cpabe-attrList peks-ind peks-test peks-trap
+DEVTARGS = test-lang TAGS
+
+MANUALS = $(TARGETS:=.1)
+HTMLMANS = $(MANUALS:.1=.html)
+
+all: $(TARGETS) $(DEVTARGS)
+
+# user-level compilation
+
+cpabe-setup: setup.o common.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+cpabe-enc: enc.o common.o policy_lang.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+cpabe-keygen: keygen.o common.o policy_lang.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+cpabe-dec: dec.o common.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+cpabe-policyList: policyList.o common.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+cpabe-attrList: attrList.o common.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+peks-ind: ind.o common.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+peks-test: indTest.o common.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+peks-trap: trap.o common.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+test-lang: test-lang.o common.o policy_lang.o
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+%.o: %.c *.h Makefile
+ $(CC) -c -o $@ $< $(CFLAGS)
+
+# installation
+
+dist: *.y policy_lang.c *.c *.h *.more-man \
+ AUTHORS COPYING INSTALL NEWS README $(MANUALS) \
+ aclocal.m4 acinclude.m4 configure configure.ac install-sh Makefile.in \
+ missing mkinstalldirs
+ rm -rf $(DISTNAME)
+ mkdir $(DISTNAME)
+ cp $^ $(DISTNAME)
+ tar zc $(DISTNAME) > $(DISTNAME).tar.gz
+ rm -rf $(DISTNAME)
+
+install: $(TARGETS) $(MANUALS)
+ $(top_srcdir)/mkinstalldirs -m 755 $(DESTDIR)$(bindir)
+ $(top_srcdir)/mkinstalldirs -m 755 $(DESTDIR)$(mandir)
+ $(top_srcdir)/mkinstalldirs -m 755 $(DESTDIR)$(mandir)/man1
+ for PROG in $(TARGETS); \
+ do \
+ $(top_srcdir)/install-sh -m 755 $$PROG $(DESTDIR)$(bindir); \
+ $(top_srcdir)/install-sh -m 644 $$PROG.1 $(DESTDIR)$(mandir)/man1; \
+ done
+
+uninstall:
+ for PROG in $(TARGETS); \
+ do \
+ /bin/rm -f $(DESTDIR)$(bindir)/$$PROG; \
+ /bin/rm -f $(DESTDIR)$(mandir)/man1/$$PROG.1; \
+ done
+
+# developer-level processing and meta stuff
+
+%.c: %.y *.h Makefile
+ if which bison 2> /dev/null; then \
+ bison -o $@ $<; \
+ fi
+
+%.1: % %.more-man
+ if which help2man 2> /dev/null; then \
+ help2man --section=1 --source="SRI International" --no-info \
+ -I $<.more-man -o $@ ./$<; \
+ fi
+
+%.html: %.1
+ groff -man -Thtml $< > $@
+
+html: $(HTMLMANS)
+
+TAGS: *.c *.h *.y
+ @(etags $^ || true) 2> /dev/null
+
+Makefile: Makefile.in config.status
+ ./config.status
+
+config.status: configure
+ ./config.status --recheck
+
+configure: configure.ac aclocal.m4 acinclude.m4
+ autoconf
+
+# cleanup
+
+# remove everything an installing user can rebuild
+clean:
+ rm -f *.o $(TARGETS) $(DEVTARGS) *.tar.gz pub_key master_key priv_key enc_ind *~
+
+# remove everything a package developer can rebuild
+distclean: clean
+ rm -rf policy_lang.c autom4te.cache Makefile config.status config.log config.cache \
+ configure configure.scan autoscan*.log *.1 *.html *.lineno