source: examples/Makefile @ 54758a7

mei_rt2
Last change on this file since 54758a7 was 2e9455f, checked in by Mei <mei@…>, 11 years ago

1) added namespace
2) tweak ?This,
3) allowing linking role/oset as constraining conditions
4) adding access_tests regression testing that uses GENI's access policy
5) added couple multi contexts regression tests
6) add compression/uncompression calls to abac_encode_string/abac_decode_string
(libstrongwan only allows 512 char for attribute rule storage)
7) add attribute_now option to creddy that takes a whole char string for attribute
rule

  • Property mode set to 100644
File size: 446 bytes
Line 
1
2
3DIRECTORY=example_scripts  python_tests  creddy_prover_tests  passphrase_tests  scaling_tests access_tests
4.PHONY : runcheck clean
5
6all: runcheck
7
8clean:
9        @printf "\n ==> make CLEAN \n" 
10        @for i in $(DIRECTORY); do \
11        here=`pwd`; \
12        cd $$i; \
13        make -s clean; \
14        cd $$here; \
15        done; 
16
17runcheck: 
18        @make -s clean
19        @printf "\n ==> make TESTS \n"
20        @for i in $(DIRECTORY); do \
21        here=`pwd`; \
22        cd $$i; \
23        make -s runcheck; \
24        cd $$here; \
25        done; 
26
Note: See TracBrowser for help on using the repository browser.