/[svn]/linuxsampler/trunk/src/network/Makefile.am
ViewVC logotype

Diff of /linuxsampler/trunk/src/network/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 504 by schoenebeck, Tue May 3 00:37:35 2005 UTC revision 654 by schoenebeck, Wed Jun 15 20:25:25 2005 UTC
# Line 1  Line 1 
1  INCLUDES = $(all_includes)  INCLUDES = $(all_includes)
2  METASOURCES = AUTO  METASOURCES = AUTO
3    
4  AM_CXXFLAGS = -Wreturn-type -ffast-math -march=$(target_cpu)  AM_CXXFLAGS = -Wreturn-type -ffast-math $(CXX_CPU_SWITCH)
5    
6  if HAVE_SQLITE3  if HAVE_SQLITE3
7  sqlite3_lflags = $(SQLITE3_LIBS)  sqlite3_lflags = $(SQLITE3_LIBS)
# Line 10  sqlite3_lflags = Line 10  sqlite3_lflags =
10  endif  endif
11    
12  noinst_LTLIBRARIES = liblinuxsamplernetwork.la  noinst_LTLIBRARIES = liblinuxsamplernetwork.la
13  liblinuxsamplernetwork_la_SOURCES = lscp.h lscpparser.cpp lscpparser.h lscpserver.cpp lscpserver.h lscpsymbols.h lscpresultset.cpp lscpresultset.h lscpevent.cpp lscpevent.h lscpinstrumentloader.cpp  liblinuxsamplernetwork_la_SOURCES = \
14            lscp.h \
15            lscpparser.cpp lscpparser.h \
16            lscpserver.cpp lscpserver.h \
17            lscpsymbols.h \
18            lscpresultset.cpp lscpresultset.h \
19            lscpevent.cpp lscpevent.h \
20            lscpinstrumentloader.h lscpinstrumentloader.cpp
21  liblinuxsamplernetwork_la_LIBADD = $(sqlite3_lflags)  liblinuxsamplernetwork_la_LIBADD = $(sqlite3_lflags)
22    
23    EXTRA_DIST = lscp.y
24    
25  .PHONY: parser  .PHONY: parser
26    
27  # generate parser with lex and yacc  # generate parser with lex and yacc
# Line 22  parser: Line 31  parser:
31              yacc -d lscp.y && \              yacc -d lscp.y && \
32              yacc lscp.y && \              yacc lscp.y && \
33              mv -f y.tab.h lscpsymbols.h && \              mv -f y.tab.h lscpsymbols.h && \
34              mv -f y.tab.c lscpparser.cpp; \              mv -f y.tab.c lscpparser.cpp && \
35                echo -n "Updating Documentation/lscp.xml..." && \
36                (cd ../../scripts/ && ./update_grammar.pl) && \
37                echo "OK"; \
38          else \          else \
39              echo "You need yacc (or bison) to generate the parser."; \              echo "You need yacc (or bison) to generate the parser."; \
40          fi;          fi;

Legend:
Removed from v.504  
changed lines
  Added in v.654

  ViewVC Help
Powered by ViewVC