File: files.lsp

package info (click to toggle)
nyquist 3.12%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 58,036 kB
  • sloc: ansic: 74,355; lisp: 20,485; java: 9,390; cpp: 6,695; sh: 207; xml: 58; makefile: 40
file content (171 lines) | stat: -rw-r--r-- 6,717 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
;; files.lsp
;; Roger Dannenberg
;; Jan 2013

;; This file (renamed from transfiles.lsp) contains lists of files
;; in various categories. This is the "declarative" part of makefile.lsp
;; In other words, makefile.lsp loads these file lists and turns them
;; into Makefiles and other build specifications.



;; transfiles - these are .c and .h files in /tran that implement nyquist
;; primitives they become arguments to intgen, which builds the stubs from
;; lisp to C
(setf transfiles '("abs" "allpoles" "alpass" "alpasscv" "alpassvv" "amosc"
                   "areson" "aresonvc" "aresoncv" "aresonvv"
                   "atone" "atonev" 
                   "biquadfilt" "buzz"
                   "chase" "clip" "congen" "const" "coterm" 
                   "delaycc" "delaycv" 
                   "eqbandvvv" "exp"
                   "follow" "fmosc" "fromobject" "fromarraystream"
                   "gate" "ifft" 
                   "instrclar" "instrclarall" "instrclarfreq"
                   "instrsax" "instrsaxall" "instrsaxfreq"
                   "integrate" "log" "lpreson"
                   "maxv" "offset" "oneshot" "osc"
                   "partial" "pluck" "prod" "pwl" "quantize" 
                   "recip" 
                   "reson" "resonvc" "resoncv"  "resonvv"
                   "sampler" "scale" "shape" "sine" "siosc" "slope" "sqrt"
                   "tapf" "tapv" "tone" "tonev" "upsample"  "white" 
		   "stkrev" "stkpitshift" "stkchorus"
		   "instrbow" "instrbowedfreq" 
                   "instrbanded" "instrmandolin"
                   "instrsitar" "instrmodalbar"                   
                   "instrflute" "instrflutefreq" "instrfluteall"
                   "fmfb" "fmfbv" "stoponzero"
                   ))

;; nyqsrcfiles - these are .c and .h files in /nyqsrc that implement nyquist
;; primitives. They become arguments to intgen, which builds the stubs from
;; lisp to C
(setf nyqsrcfiles '("sound" "add" "avg" "compose" "convolve" "downsample" 
                    "fft" "inverse" "multiseq" "resamp" "resampv" 
                    "samples" "sndmax" "sndread" "sndseq"  "sndsliders"
                    "sliderdata" "sndwritepa" "yin" "nyq-osc-server" 
                    "trigger" "lpanal" "phasevocoder" "pvshell"
                   ))

;; nyqfiles - these are additional files in /nyqsrc that need to be compiled
;; and linked to make nyquist
(setf nyqfiles '("debug" "falloc" "local" 
		 "handlers" "multiread" 
		 "seqext" "seqinterf"  "stats" 
		 "ffilterkit"
                 ))

;; nyqfiles-h - .h files (not sure these are used)
;(setf nyqfiles-h '("localdefs" "localptrs" "seqdecls" "cque" "switches"))


;; nyqfiles-lsp -- .lsp files (seem to be unused)
;(setf nyqfiles-lsp '("init" "nyquist" "seqmidi" "seq" "makefile"
;                     "update" "transfiles" "examples" "nyinit"))


;; xlfiles - .c sources from /xlisp
(setf xlfiles '("extern" "xldmem" 
  "xlbfun" "xlcont" "xldbug" "xleval"
  "xlfio" "xlftab" "xlglob" "xlimage" "xlinit" "xlio" "xlisp"
  "xljump" "xllist" "xlmath" "xlobj" "xlpp" "xlprin" "xlread"
  "xlstr" "xlsubr" "xlsym" "xlsys" "path" "security"))

;; xlfiles-h - .h files from /xlisp, note that xlisp does not
;; generally have a .h file for each .c file, hence the separate
;; list
(setf xlfiles-h '("osdefs" "osptrs" "xldmem" "xlisp" "extern"))

;; xlfiles-lsp - .lsp files from /runtime
(setf xlfiles-lsp '("xlinit" "misc" "evalenv" "printrec"))

;; stksrcfiles - .c and .h files from /nyqstk/src/
(setf stksrcfiles '("Generator" "SineWave" "Function" "FileRead" "FileWvIn" "Effect"
 "Clarinet" "Delay" "DelayL" "Envelope" "Filter" 
  "Instrmnt" "Noise" "OneZero" "ReedTable" "Saxofony" "Stk"
  "WaveLoop" "WvIn"
  "NRev" "JCRev" "PRCRev" "PitShift" "Chorus"
  "Bowed" "BowTable" "ADSR" "OnePole" "BiQuad"
  "BandedWG" "DelayA"
  "Mandolin" "PluckTwo"
  "Sitar" "ModalBar" "Modal"
  "Flute" "JetTable" "PoleZero"
))

;; stkfiles - .c and .h files from /nyqstk
(setf stkfiles '("stkinit" "instr" "stkint"))

;; fftfiles - .c and .h files from /ffts/src
(setf fftfiles '("fftext" "fftlib" "matlib"))

;; cmtfiles - .c and .h files from /cmt
(setf cmtfiles '("cext" "cleanup" "cmdline" "cmtcmd" 
  "moxc" "mem" "midifile" "midifns" "record"
  "seq" "seqmread" "seqmwrite" "seqread" "seqwrite" "tempomap"
  "timebase" "userio")) ; "midimgr" - removed by RBD

;; cmtfiles-h - extra .h files in /cmt (not used)
;(setf cmtfiles-h '("mfmidi" "midicode" "midierr" "musiprog"
;  "pitch"  "swlogic" "hash" "hashrout" "io" "midibuff"))

;; nylsffiles - .c and .h files from /nylsf (a local version of libsndfile)
(setf nylsffiles '("aiff" "alaw" "au" "audio_detect"
        "avr" "broadcast"
	"caf" "chanmap" "chunk" "command" "common" "dither"
	"double64" "dwd" "dwvw" "file_io"
	"flac" "float32" "gsm610" "htk" "id3"
	"ima_adpcm" "ima_oki_adpcm" "interleave" "ircam" 
	"macbinary3" "macos" "mat4" "mat5" "mpc2k"
        "ms_adpcm" "nist" "ogg" "ogg_vorbis" "paf"
	"pcm" "pvf" "raw" "rf64" "rx2" "sd2"
	"sds" "sndfile" "strings" "svx"
	"txw" "ulaw" "voc" "vox_adpcm"
	"w64" "wav" "wav_w64" "wve"
	"xi" "g72x"
        "GSM610/add" "GSM610/code" "GSM610/decode"
	"GSM610/gsm_create" "GSM610/gsm_decode"
	"GSM610/gsm_destroy" "GSM610/gsm_encode"
	"GSM610/gsm_option" "GSM610/long_term"
	"GSM610/lpc" "GSM610/preprocess"
	"GSM610/rpe" "GSM610/short_term"
	"GSM610/table"
	"G72x/g721" "G72x/g723_16" "G72x/g723_24"
	"G72x/g723_40" "G72x/g72x"))

;; sysunixfiles - .c and .h files from /sys/unix
(setf sysunixfiles '("osstuff" "term"))

;; nylsffiles-h - extra .h files needed for /nylsf (not used)
;(setf nylsffiles-h '("common" "config" "float_cast" "sfconfig"
;                     "endian" "sf_unistd" "sndfile" "wav_w64"
;                     "GSM610/gsm610_priv" "GSM610/gsm"
;                     "G72x/g72x" "G72x/g72x_priv"))


;; sndfiles-lsp - .lsp files generated by intgen (not used)
;(setf sndfiles-lsp '("sndfmt" "sndfile"))

;; javafiles - source files for Java
(setf javafiles '("browser" "NyquistThread"
          "Pair" "BareBonesBrowserLaunch"
          "EnvelopeFrame" "Piano_Roll"
          "FindDialog" "PlotFrame"
          "InstrumentCharacteristics"
          "PlotMouseAdapter"
          "Jslide" "PopupListener"
          "LispFileFilter" "PreferencesDialog"
          "MainFrame_AboutBox" "ReplaceDialog"
          "MainFrame" "SpringUtilities"
          "Main"
          "NotFoundDialog" "TextColor"
          "NyqPlot" "Trie"
          "NyquistFile" "WordList"))


;; Other variables that control Makefile generation:
;
;; system-type - a symbol naming the system to create a Makefile for
;;               current options are ALSA and NONALSA
;; target-file - a string for the target, default is "ny"
;;