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

Annotation of /linuxsampler/trunk/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 35 - (hide annotations) (download)
Fri Mar 5 13:46:15 2004 UTC (20 years ago) by schoenebeck
File size: 245 byte(s)
* implemented parser for the LinuxSampler control protocol (LSCP) by using
  flex / bison (where src/network/lscp.l is the input file for lex / flex
  and src/network/lscp.y is the input file for yacc / bison), parser and
  scanner can be regenerated by 'make parser'
* implemented LSCP network server (only single threaded so far), LSCP
  server will be launched if LinuxSampler was started with "--server" flag,
  implemented the following LSCP commands so far: "LOAD INSTRUMENT", "GET
  CHANNEL VOICE_COUNT", "GET CHANNEL STREAM_COUNT", "GET CHANNEL
  BUFFER_FILL", "SET CHANNEL VOLUME" and "RESET CHANNEL"
* disk thread now started within the engine

1 schoenebeck 9 # not a GNU package. You can remove this line, if
2     # have all needed files, that a GNU package needs
3     AUTOMAKE_OPTIONS = foreign 1.4
4    
5     SUBDIRS = src
6 schoenebeck 35
7     .PHONY: parser
8    
9     # generate parser with lex and yacc
10     parser:
11     @cd $(srcdir)/src/network && make $@

  ViewVC Help
Powered by ViewVC