From 96eb2dc401f785e2b35a2089dda24416ff9bb305 Mon Sep 17 00:00:00 2001 From: Thorsten Kukuk Date: Mon, 26 Sep 2005 12:49:52 +0000 Subject: Relevant BUGIDs: none Purpose of commit: bugfix Commit summary: --------------- Fix spec generation and creating tar archive with automake: * configure.in: Add doc/specs/Makefile. * Makefile.am: Add releasedocs rule. * doc/Makefile.am: Add specs subdir, remove files from specs directory, add rfc86.0.txt to releasedocs. * doc/specs/Makefile.am: New file. * doc/specs/formatter/parse.y: move from here ... * doc/specs/parse.y: ... here. * doc/specs/formatter/parse.lex: move from here ... * doc/specs/parse.lex: ... here. --- doc/specs/Makefile.am | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 doc/specs/Makefile.am (limited to 'doc/specs/Makefile.am') diff --git a/doc/specs/Makefile.am b/doc/specs/Makefile.am new file mode 100644 index 00000000..749f0ba7 --- /dev/null +++ b/doc/specs/Makefile.am @@ -0,0 +1,23 @@ +# +# Copyright (c) 2005 Thorsten Kukuk +# + +CLEANFILES = draft-morgan-pam-current.txt *~ + +EXTRA_DIST = draft-morgan-pam.raw std-agent-id.raw rfc86.0.txt lex.yy.c + +all: padout spec + +spec: draft-morgan-pam.raw + ./padout < draft-morgan-pam.raw > draft-morgan-pam-current.txt + +noinst_PROGRAMS = padout + +padout_SOURCES = parse.y parse.lex + +padout_LDADD = @LEXLIB@ + +parse.c: lex.yy.c + +lex.yy.c: parse.lex + $(LEX) parse.lex -- cgit v1.2.3