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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
|
;; makefile.lsp -- builds makefiles for various machine types
(setf system-types '(rs6k next pmax sparc sgi linux))
(if (not (boundp 'system-type)) (setf system-type nil))
(if (not (boundp 'target-file)) (setf target-file "ny"))
(format t "System types: ~A~%" system-types)
(format t "Current type: ~A~%" system-type)
(format t "Current target: ~A~%" target-file)
(format t "~%Instructions: (run from top nyquist directory)~%")
(format t "Choose a system from the list above by typing:~%")
(format t "\t(setf system-type '<a system type>)~%")
(format t "Override the executable name or location by:~%")
(format t "\t(setf target-file \"unix-path-name/ny\")~%")
(format t "To build the Makefile, type:~%")
(format t "\t(makefile)~%")
(format t "To make Makefiles for all system types, type:~%")
(format t "\t(makeall)~%")
;(format t "To build the Makesrc file, type:~%")
;(format t "\t(makesrc)~%")
;(format t
;"Note: Makesrc is used to update sources from other directories.
; It isn't necessary if you got the sources from the normal
; .tar file release of Nyquist
;")
(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"))
(setf xlfiles-h '("osdefs" "osptrs" "xldmem" "xlisp" "extern"))
(setf xlfiles-lsp '("xlinit" "misc" "evalenv" "printrec"))
(setf nyqfiles '("debug" "falloc" "add" "local"
"downsample" "handlers" "multiread" "multiseq" "samples"
"seqext" "seqinterf" "sndread" "sndseq"
"sndwrite" "sndmax" "sound" "stats" "compose" "inverse"
"resamp" "resampv" "ffilterkit" "avg" "fft" "sndfail"))
(setf fftfiles '("fftn"))
; note: audio<sys> and snd<sys> will be prepended to this list, e.g.
; the strings "audiooss" and "sndlinux" will be added for linux systems
;
(defun init-sndfiles ()
(setf sndfiles '("ieeecvt" "snd" "sndcvt" "sndio" "sndheader"))
(setf sndfiles-lsp '("snd")))
(init-sndfiles)
(setf depends-exceptions '(
("nyqsrc/handlers" "")
("nyqsrc/sndfail" "")
("nyqsrc/local" "xlisp/xlisp.h nyqsrc/sound.h")
("nyqsrc/stats" "nyqsrc/sound.h nyqsrc/falloc.h nyqsrc/cque.h")
("snd/sndcvt" "snd/snd.h")
("snd/sndio" "snd/snd.h")
("snd/audiors6k" "snd/snd.h")
("snd/audionext" "snd/snd.h")
("snd/audiosgi" "snd/snd.h")
("snd/audiopmax" "snd/snd.h")
("snd/audiosparc" "snd/snd.h")
("snd/audiolinux" "snd/snd.h")
("snd/audiooss" "snd/snd.h")
("nyqsrc/sndfnint" "") ; sparc needs explicit rule for sndfnint.o
("nyqsrc/seqfnint" "") ; ditto for seqfnint.o
))
(setf nyqfiles-lsp '("init" "nyquist" "seqmidi" "seq" "makefile" "update" "transfiles" "examples" "nyinit"))
(setf system-types-as-strings (mapcar #'string-downcase
(mapcar #'symbol-name system-types)))
(setf nyqfiles-lsp (append nyqfiles-lsp system-types-as-strings))
(setf nyqfiles-h '("localdefs" "localptrs" "seqdecls" "cque" "switches"))
(setf intfiles '("sndfnint" "seqfnint"))
(setf extrafiles nil)
;(dolist (m system-types)
; (push (strcat "Makefile."
; (string-downcase (symbol-name m)))
; extrafiles))
(push "export" extrafiles)
(push "README" extrafiles)
(push "howtorelease.doc" extrafiles)
(setf cmtfiles '("cext" "cleanup" "cmdline" "cmtcmd"
"moxc" "mem" "midifile" "midifns" "record"
"seq" "seqmread" "seqmwrite" "seqread" "seqwrite" "tempomap"
"timebase" "userio")) ; "midimgr" - removed by RBD
(setf cmtfiles-h '("mfmidi" "midicode" "midierr" "musiprog"
"pitch" "swlogic" "hash" "hashrout" "io" "midibuff"))
;; MAKEALL - makes all makefiles and copies them to nyqsrc
;;
;; run this in nyquist/src
;;
(defun makeall ()
; (makesrc)
; (system "cp -p Makesrc nyqsrc")
(dolist (m system-types)
(setf system-type m)
(setf m (string-downcase (symbol-name m)))
(init-sndfiles)
(makefile)))
;; MAKE-AUDIO-NAME -- (strcat "audio" system-name)
(defun make-audio-name (system-name)
(cond ((eq system-type 'linux)
"audiooss")
(t (strcat "audio" system-name))))
;; MAKE-SND-NAME -- (strcat "audio" system-name)
(defun make-snd-name (system-name)
(strcat "snd" system-name))
;; MAKEFILE - creates a Makefile from a list of sources
;;
;; reads sources from nyqfiles.txt
(defun makefile ()
(let (system-name outf outf-name)
(load "misc/transfiles.lsp") ; just to make sure we're current
(while (null system-type)
(format t "Write Makefile for what system? One of:~A~%" system-types)
(setf system-type (read))
(cond ((not (member system-type system-types))
(format t "Unknown system type.~%")
(setf system-type nil))))
(setf system-name (string-downcase
(symbol-name system-type)))
(setf outf-name (strcat "sys/unix/" system-name "/Makefile"))
(format t "Opening for output: ~A\n" outf-name)
(setf outf (open outf-name :direction :output))
(setf sndfiles (cons (make-audio-name system-name)
(cons (make-snd-name system-name) sndfiles)))
(format outf
"#
# Makefile for Nyquist, SYSTEM-TYPE is ~A
# run make in the top-level Nyquist directory to compile Nyquist
#
# NOTE: this file is machine-generated. DO NOT EDIT!
# Instead, modify makefile.lsp and regenerate the makefile.
# Ports and bug fixes are welcome - please mail them to
# dannenberg@cs.cmu.edu. Thanks.
#
# This is the resulting executable (normally \"ny\"):
NY = ~A
# Standard list of includes (common to all unix versions)
INCL = -Inyqsrc -Itran -Ixlisp -Isys/unix -Icmt -Isnd -Ifft
# system dependent stuff for ~A:
~A
INTGEN = misc/intgen
# Object files for Nyquist:
" system-type target-file system-name (system-defs))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(object-files outf)
(format outf "# Sound functions to add to xlisp~%")
(nyqheaders outf)
(cmtheaders outf)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(format outf "
EVERYTHING = $(NY) runtime/system.lsp
CURRENT = $(EVERYTHING)
current: $(CURRENT)
$(NY): $(OBJECTS)
\t$(LN) $(OBJECTS) $(LFLAGS) -o $(NY)
# copy appropriate system.lsp and make it read-only;
# changes should be made to sys/unix/<system>/system.lsp
runtime/system.lsp: sys/unix/~A/system.lsp
\tchmod +w runtime/system.lsp
\tcp -p sys/unix/~A/system.lsp runtime/system.lsp
\tchmod -w runtime/system.lsp
" system-name system-name)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(dependencies outf system-name)
(format outf (system-rules))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(format outf
"misc/intgen: misc/intgen.c
\tcd misc; make intgen
misc/unpacker: misc/unpacker.c misc/convert.c
\tcd misc; make unpacker
misc/packer: misc/packer.c misc/convert.c
\tcd misc; make packer
nyqsrc/sndfnintptrs.h: $(NYQHDRS) snd/snd.h misc/intgen
\t$(INTGEN) nyqsrc/sndfnint $(NYQHDRS)
nyqsrc/seqfnintptrs.h: $(CMTHDRS) misc/intgen
\t$(INTGEN) nyqsrc/seqfnint $(CMTHDRS)
clean:
\tcd misc; make clean
\trm -f $(OBJECTS)
# Note that these files are machine-generated:
\trm -f nyqsrc/sndfnintptrs.h nyqsrc/sndfnint.c nyqsrc/sndfnintdefs.h
\trm -f nyqsrc/seqfnintptrs.h nyqsrc/seqfnint.c nyqsrc/seqfnintdefs.h
cleaner: clean
\tcd misc; make cleaner
\trm -f *.backup */*.backup
\trm -f *~~ */*.*~~
\trm -f *.save */*.save
\trm -f *.CKP */*.CKP
\trm -f *.BAK */*.BAK
\trm -f *.old */*.old
\trm -f *.gold */*.gold
\trm -f playparms
\trm -f points.dat
")
(cond ((eq system-type 'rs6k)
(format outf "
tar: cleaner
\tsh -v sys/unix/cmu/tar.script
backup: cleaner
\tsh -v sys/unix/cmu/backup.script
")))
(close outf)
))
;; system-defs looks for a string of system-dependent defs for the makefile
;;
(defun system-defs () (system-var "-DEFS"))
;; system-rules looks for a string of system-dependent rules for the makefile
;;
(defun system-rules () (system-var "-RULES"))
;; system-var returns a string stored in the variable (if any):
;; <system-type>-<suffix>
;;
(defun system-var (suffix)
(let ((v (intern (strcat (symbol-name system-type) suffix))))
(cond ((boundp v) (symbol-value v))
(t ""))))
;; object-files - writes names of all object files for linking
;;
(defun object-files (outf)
(let ((flist (append (add-prefix "xlisp/" xlfiles)
(add-prefix "tran/" transfiles)
(add-prefix "cmt/" cmtfiles)
(add-prefix "nyqsrc/" nyqfiles)
(add-prefix "fft/" fftfiles)
(add-prefix "nyqsrc/" intfiles)
(add-prefix "snd/" sndfiles)
'("sys/unix/osstuff" "sys/unix/term"))))
(setf flist (add-suffix flist ".o"))
(format outf "OBJECTS = ")
(write-file-list outf flist)))
;; add-prefix - place string at beginning of each string in list
;;
(defun add-prefix (prefix lis)
(mapcar #'(lambda (str) (strcat prefix str)) lis))
;; add-suffix - place string at end of each string in list
;;
(defun add-suffix (lis suffix)
(mapcar #'(lambda (str) (strcat str suffix)) lis))
;; write-file-list - write file names to Make macro
;;
(defun write-file-list (outf flist)
(while flist
(dotimes (i 4)
(format outf "~A " (car flist))
(setf flist (cdr flist))
(if (null flist) (return)))
(if flist (format outf " \\~%\t")))
(format outf "~%~%"))
(defun nyqheaders (outf)
(let ((flist (append
(list "snd/snd")
(add-prefix "nyqsrc/"
'("sound" "downsample" "sndread" "sndseq" "add"
"multiseq" "samples" "sndwrite" "sndmax" "compose"
"inverse" "resamp" "resampv" "fft" "avg"))
(add-prefix "tran/" transfiles))))
(setf flist (mapcar #'(lambda (f) (strcat f ".h")) flist))
(format outf "NYQHDRS = ")
(write-file-list outf flist)))
(defun cmtheaders (outf)
(let ((flist
(append '("cmt/seqdecls" "nyqsrc/seqext" "cmt/seq"
"nyqsrc/seqinterf") ; order is important here!
(add-prefix "cmt/"
'("seqread" "seqmread" "seqwrite" "seqmwrite")))))
(setf flist (add-suffix flist ".h"))
(format outf "CMTHDRS = ")
(write-file-list outf flist)))
(defun dependencies (outf system-name)
;; this forces generation of sndfnintdefs.h, seqfnintdefs.h:
(dolist (f (append (add-prefix "nyqsrc/" nyqfiles)
(add-prefix "snd/" sndfiles)
(add-prefix "fft/" fftfiles)
(add-prefix "tran/" transfiles)
(add-prefix "nyqsrc/" intfiles)))
(let ((ex (assoc f depends-exceptions :test #'equal)))
(cond ((and ex (cdr ex))
(format outf "~A.o: ~A.c ~A~%" f f (cadr ex))
(format outf "\tcc -c ~A.c -o ~A.o $(CFLAGS)~%~%" f f))
(t
(format outf "~A.o: ~A.c ~A.h nyqsrc/sound.h nyqsrc/falloc.h nyqsrc/cque.h~%"
f f f)
(format outf "\tcc -c ~A.c -o ~A.o $(CFLAGS)~%~%" f f)))))
(format outf "xlisp/xlftab.o: nyqsrc/sndfnintptrs.h nyqsrc/sndfnintdefs.h")
(format outf " nyqsrc/seqfnintptrs.h nyqsrc/seqfnintdefs.h~%")
(format outf "\tcc -c xlisp/xlftab.c -o xlisp/xlftab.o $(CFLAGS)~%~%")
(dolist (f (append (add-prefix "xlisp/" xlfiles)
(add-prefix "cmt/" cmtfiles)
'("sys/unix/osstuff")))
(cond ((and (not (equal f "xlisp/xlftab")) ; special case handled above
(not (and (equal f "xlisp/xljump") ; case handled below
(equal system-name "next"))))
(format outf "~A.o: ~A.c~%\tcc -c ~A.c -o ~A.o $(CFLAGS)~%~%"
f f f f)))))
;; MAKESRC -- makes the Makesrc file
;;
(defun makesrc ()
(let (outf)
(load "misc/transfiles.lsp") ; just to make sure we're current
(format t "Writing Makesrc\n")
(setf outf (open "Makesrc" :direction :output))
(format outf "#
# FILE: Makefile to import sources
#
# usage: make -f Makesrc
#
# I want to be able to keep sources separate from objects, e.g. the
# MIDI sequence code comes from the CMU MIDI Toolkit, and XLisp should
# be compile-able without Nyquist.
#
# There are tools to do this, but I don't expect to find the same tool
# everywhere Nyquist is ported, so I'm taking this simple path.
# Source Paths:
NYQ = nyqsrc
CMT = cmt
XLISP = xlisp
TRANS = tran
SND = snd
EVERYTHING: sources
")
(source-files outf)
(format outf "
#
# XLISP SOURCES
#
")
(source-depends outf xlfiles ".c" "XLISP")
(source-depends outf xlfiles-h ".h" "XLISP")
(source-depends outf xlfiles-lsp ".lsp" "XLISP")
(format outf "
#
# NYQUIST SOURCES
#
")
(source-depends outf nyqfiles ".c" "NYQ")
(source-depends outf (exceptions-filter nyqfiles) ".h" "NYQ")
(source-depends outf nyqfiles-h ".h" "NYQ")
(source-depends outf nyqfiles-lsp ".lsp" "NYQ")
(source-depends outf extrafiles "" "NYQ")
(format outf "
#
# CMT SOURCES
#
")
(source-depends outf cmtfiles ".c" "CMT")
(source-depends outf (exceptions-filter cmtfiles) ".h" "CMT")
(source-depends outf cmtfiles-h ".h" "CMT")
(format outf "
#
# TRANS SOURCES
#
")
(source-depends outf transfiles ".c" "TRANS")
(source-depends outf transfiles ".h" "TRANS")
(format outf "
#
# SND SOURCES
#
")
(source-depends outf sndfiles ".c" "SND")
(source-depends outf sndfiles ".h" "SND")
(close outf)))
;; SOURCE-FILES -- writes the sources: list to Makesrc
;;
(defun source-files (outf)
(setf flist (append xlfiles nyqfiles fftfiles cmtfiles transfiles sndfiles))
(setf flist-h (append xlfiles-h nyqfiles-h cmtfiles-h transfiles))
; Add .c files as .h files unless exceptions list indicates there is
; no .h file:
(setf flist-h (append (exceptions-filter nyqfiles)
(exceptions-filter cmtfiles)
(exceptions-filter sndfiles)
flist-h))
(setf flist-lsp (append xlfiles-lsp nyqfiles-lsp sndfiles-lsp))
(setf flist (mapcar #'(lambda (f) (strcat f ".c")) flist))
(setf flist-h (mapcar #'(lambda (f) (strcat f ".h")) flist-h))
(setf flist-lsp
(mapcar #'(lambda (f) (strcat f ".lsp")) flist-lsp))
(format outf "sources: ")
(write-file-list outf (append flist flist-h flist-lsp extrafiles)))
;; EXCEPTIONS-FILTER - remove .h files from list
; the depends-exceptions tells whether a .h file exists for a .c file
;;
(defun exceptions-filter (files)
(let (result)
(dolist (f files)
(let ((ex (assoc f depends-exceptions :test #'equal)))
(cond (ex
(if (and (cdr ex)
(string-search (strcat f ".h") (cadr ex)))
(push f result)))
(t (push f result)))))
result))
;; SOURCE-DEPENDS -- write dependency for source files
;;
(defun source-depends (outf files ext dir)
(dolist (f files)
(let ((fname (strcat f ext)))
(format outf
"~A: $(~A)/~A~%\trm -f ~A~%\tcp -p $(~A)/~A .~%\tchmod -w ~A~%~%"
fname dir fname fname dir fname fname))))
;;===================================================
;; SYSTEM DEPENDENCIES
;;===================================================
(setf rs6k-defs "
MIDI = /afs/cs/project/music/rs6k/midilib
CC = cc
# change -g to -O for optimization
CFLAGS = -DCMTSTUFF -g $(INCL) -I$(MIDI)
XFLAGS = $(CFLAGS) -qlanglvl=extended
LN = xlc -qattr -qlist
LFLAGS = -lm -L$(MIDI) -lmidi -lbsd -lg
")
(setf next-defs "
CC = cc
CFLAGS = -DCMTSTUFF -O $(INCL)
LN = cc
LFLAGS = -lm
")
(setf next-rules "
# this doesn't compile with the -O switch (a NeXT compiler bug?)
xlisp/xljump.o : xlisp/xljump.c xlisp/xlisp.h
\t$(CC) -DCMTSTUFF -c xlisp/xljump.c -o xlisp/xljump.o
")
(setf pmax-defs "
CC = cc
CFLAGS = -DCMTSTUFF -g $(INCL)
LN = cc
LFLAGS = -lm
")
(setf sgi-defs "
CC = cc
CFLAGS = -DCMTSTUFF -g $(INCL)
LN = cc
LFLAGS = -lm
# you would need -lmd if UNIX_IRIX_MIDIFNS were defined in midifns.c
")
(setf sparc-defs "
CC = gcc
CFLAGS = -DCMTSTUFF -g $(INCL)
LN = $(CC)
LFLAGS = -lm
")
(setf linux-defs "
CC = gcc
CFLAGS = -DCMTSTUFF -O2 $(INCL)
LN = $(CC)
LFLAGS = -lm
")
|