blob: 649bd223be02fba5326b9ddc12684583517bcd03 [file] [log] [blame]
vlmfa67ddc2004-06-03 03:38:44 +00001
2dist_bin_SCRIPTS = crfc2asn1.pl clyx2asn1.pl
3
vlm5521edf2004-09-07 06:36:54 +00004ASN1_SOURCE_1 = rfc3280.txt
5ASN1_FILES_1 = \
6 rfc3280-PKIX1Explicit88.asn1 \
7 rfc3280-PKIX1Implicit88.asn1
8
vlm2cc16202006-09-09 04:49:45 +00009ASN1_SOURCE_2 = rfc3525.txt
10ASN1_FILES_2 = \
11 rfc3525-MEDIA-GATEWAY-CONTROL.asn1
12
vlmb9344922006-09-09 11:06:11 +000013ASN1_SOURCE_3 = rfc4511.txt
14ASN1_FILES_3 = \
vlm9cd2fdf2006-09-09 11:12:43 +000015 rfc4511-Lightweight-Directory-Access-Protocol-V3.asn1
vlmb9344922006-09-09 11:06:11 +000016
17all: $(ASN1_FILES_1) $(ASN1_FILES_2) $(ASN_FILES_3)
vlmface4752004-09-07 06:32:11 +000018
19$(ASN1_FILES_1): crfc2asn1.pl $(ASN1_SOURCE_1)
20 ./crfc2asn1.pl $(ASN1_SOURCE_1)
21
vlm2cc16202006-09-09 04:49:45 +000022$(ASN1_FILES_2): crfc2asn1.pl $(ASN1_SOURCE_2)
23 ./crfc2asn1.pl $(ASN1_SOURCE_2)
24
vlmb9344922006-09-09 11:06:11 +000025$(ASN1_FILES_3): crfc2asn1.pl $(ASN1_SOURCE_3)
26 ./crfc2asn1.pl $(ASN1_SOURCE_3)
27
vlm2566daf2005-03-24 03:30:13 +000028EXTRA_DIST = $(srcdir)/rfc*.txt \
29 $(srcdir)/sample.source.PKIX1/README \
30 $(srcdir)/sample.source.PKIX1/config.h \
31 $(srcdir)/sample.source.PKIX1/Makefile \
32 $(srcdir)/sample.source.PKIX1/regenerate.Makefile \
33 $(srcdir)/sample.source.TAP3/README \
34 $(srcdir)/sample.source.TAP3/config.h \
35 $(srcdir)/sample.source.TAP3/Makefile \
vlm9cd2fdf2006-09-09 11:12:43 +000036 $(srcdir)/sample.source.TAP3/regenerate.Makefile \
37 $(srcdir)/sample.source.MHEG5/README \
38 $(srcdir)/sample.source.MHEG5/config.h \
39 $(srcdir)/sample.source.MHEG5/Makefile \
40 $(srcdir)/sample.source.MHEG5/regenerate.Makefile \
41 $(srcdir)/sample.source.LDAP3/README \
42 $(srcdir)/sample.source.LDAP3/config.h \
43 $(srcdir)/sample.source.LDAP3/Makefile \
44 $(srcdir)/sample.source.LDAP3/regenerate.Makefile
vlmb7353712005-03-10 15:09:02 +000045
vlm9cd2fdf2006-09-09 11:12:43 +000046CLEANFILES = $(ASN1_FILES_1) $(ASN1_FILES_2) $(ASN1_FILES_3)
vlm24b9a8b2004-09-29 13:18:44 +000047
48clean-local:
49 cd sample.source.PKIX1 && make distclean
vlmb7353712005-03-10 15:09:02 +000050 cd sample.source.TAP3 && make distclean
vlm4a0374a2006-03-18 07:17:41 +000051 cd sample.source.MHEG5 && make distclean
vlm9cd2fdf2006-09-09 11:12:43 +000052 cd sample.source.LDAP3 && make distclean