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

Contents of /linuxsampler/trunk/src/scriptvm/editor/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2885 - (show annotations) (download)
Fri Apr 22 15:37:45 2016 UTC (7 years, 11 months ago) by schoenebeck
File size: 656 byte(s)
* Instrument script classes now exported with the liblinuxsampler C++ API.
* Added new API method ScriptVM::syntaxHighlighting() which provides
  a convenient syntax highlighting backend for external instrument
  script editor applications.
* Bumped version (2.0.0.svn5).

1 AM_CPPFLAGS = $(all_includes)
2 METASOURCES = AUTO
3
4 AM_CXXFLAGS = -Wreturn-type -ffast-math $(CXX_CPU_SWITCH)
5
6 noinst_LTLIBRARIES = liblinuxsamplerscriptvmeditor.la
7 liblinuxsamplerscriptvmeditor_la_SOURCES = \
8 CodeScanner.h CodeScanner.cpp \
9 SourceToken.h \
10 nksp.cpp \
11 NkspScanner.h NkspScanner.cpp
12
13 EXTRA_DIST = nksp.l
14
15 # automatically (re)generate nksp.cpp with flex / lex if the
16 # lex source file(s) have been changed
17 nksp.cpp: nksp.l NkspScanner.h CodeScanner.h SourceToken.h
18 $(top_srcdir)/scripts/generate_nksp_editor_parser.sh
19
20 .PHONY: parser
21
22 # "make parser" was explicitly requested
23 parser:
24 $(top_srcdir)/scripts/generate_nksp_editor_parser.sh

  ViewVC Help
Powered by ViewVC