myserver-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[myserver-commit] [3032] Use the found YACC and LEX programs to generate


From: Giuseppe Scrivano
Subject: [myserver-commit] [3032] Use the found YACC and LEX programs to generate the FTP parser.
Date: Fri, 27 Mar 2009 22:49:17 +0000

Revision: 3032
          http://svn.sv.gnu.org/viewvc/?view=rev&root=myserver&revision=3032
Author:   gscrivano
Date:     2009-03-27 22:49:17 +0000 (Fri, 27 Mar 2009)
Log Message:
-----------
Use the found YACC and LEX programs to generate the FTP parser.

Modified Paths:
--------------
    trunk/myserver/src/protocol/ftp/Makefile.am

Modified: trunk/myserver/src/protocol/ftp/Makefile.am
===================================================================
--- trunk/myserver/src/protocol/ftp/Makefile.am 2009-03-27 22:48:15 UTC (rev 
3031)
+++ trunk/myserver/src/protocol/ftp/Makefile.am 2009-03-27 22:49:17 UTC (rev 
3032)
@@ -4,7 +4,7 @@
 INCLUDES = $(all_includes)
 
 build_parser: ftp_lexer.lpp ftp_parser.ypp
-       bison --defines=../../../include/protocol/ftp/ftp_parser.h \
+       $(YACC) $(YFLAGS) --defines=../../../include/protocol/ftp/ftp_parser.h \
        --output=ftp_parser.cpp ftp_parser.ypp
-       flex --header-file=../../../include/protocol/ftp/ftp_lexer.h \
+       $(LEX) --header-file=../../../include/protocol/ftp/ftp_lexer.h \
        --outfile=ftp_lexer.cpp ftp_lexer.lpp





reply via email to

[Prev in Thread] Current Thread [Next in Thread]