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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 53 - (hide annotations) (download)
Mon Apr 26 17:15:51 2004 UTC (19 years, 11 months ago) by schoenebeck
File size: 662 byte(s)
* completely restructured source tree
* implemented multi channel support
* implemented instrument manager, which controls sharing of instruments
  between multiple sampler engines / sampler channels
* created abstract classes 'AudioOutputDevice' and 'MidiInputDevice' for
  convenient implementation of further audio output driver and MIDI input
  driver for LinuxSampler
* implemented following LSCP commands: 'SET CHANNEL MIDI INPUT TYPE',
  'LOAD ENGINE', 'GET CHANNELS', 'ADD CHANNEL', 'REMOVE CHANNEL',
  'SET CHANNEL AUDIO OUTPUT TYPE'
* temporarily removed all command line options
* LSCP server is now launched by default

1 schoenebeck 35 INCLUDES = $(all_includes)
2     METASOURCES = AUTO
3 schoenebeck 53 noinst_LIBRARIES = liblinuxsamplernetwork.a
4     liblinuxsamplernetwork_a_SOURCES = lscp.h lscpparser.cpp lscpparser.h lscpscanner.cpp lscpserver.cpp lscpserver.h lscpsymbols.h
5 schoenebeck 35
6     .PHONY: parser
7    
8     # generate parser with lex and yacc
9     parser:
10     @echo "Generating LSCP parser..."
11     @if which "lex" > /dev/null && which "yacc" > /dev/null; then \
12     yacc -d lscp.y && \
13     lex -f lscp.l && \
14     yacc lscp.y && \
15     mv -f y.tab.h lscpsymbols.h && \
16     mv -f y.tab.c lscpparser.cpp && \
17     mv -f lex.yy.c lscpscanner.cpp; \
18     else \
19     echo "You need lex (or flex) and yacc (or bison) to generate the parser."; \
20     fi;
21 schoenebeck 53

  ViewVC Help
Powered by ViewVC