annotate tools/makefile @ 0:5242703e91d3 tip

Initial checkin for AIM92 aimR8.2 (last updated May 1997).
author tomwalters
date Fri, 20 May 2011 15:19:45 +0100
parents
children
rev   line source
tomwalters@0 1 #############################################################################
tomwalters@0 2 #
tomwalters@0 3 #
tomwalters@0 4 # Makefile for AIM tools - Michael Allerhand 1993
tomwalters@0 5 #
tomwalters@0 6 # Machine defaults:-
tomwalters@0 7 #
tomwalters@0 8 # on DEC:
tomwalters@0 9 # CC = cc
tomwalters@0 10 # CFLAGS = -O -I/usr/include
tomwalters@0 11 # LDFLAGS = -L/usr/lib -lX11 -lm
tomwalters@0 12 # on SUN:
tomwalters@0 13 # CC = cc
tomwalters@0 14 # CFLAGS = -O -I/usr/openwin/include
tomwalters@0 15 # LDFLAGS = -L/usr/lib -lX11 -lm
tomwalters@0 16 # on SUN (gcc):
tomwalters@0 17 # CC = gcc (eg: /usr/local/bin/gcc)
tomwalters@0 18 # CFLAGS = -O2 -I/usr/openwin/include
tomwalters@0 19 # LDFLAGS = -L/usr/lib -lX11 -lm
tomwalters@0 20 #
tomwalters@0 21 # on SUN (using APU local sun Xlib server):
tomwalters@0 22 # CC = cc
tomwalters@0 23 # CFLAGS = -O -I/usr/local2/include
tomwalters@0 24 # LDFLAGS = -L/usr/local2/lib -lX11 -lm
tomwalters@0 25 #
tomwalters@0 26 #
tomwalters@0 27
tomwalters@0 28
tomwalters@0 29 .c.o :
tomwalters@0 30 $(CC) $(CFLAGS) -c $<
tomwalters@0 31
tomwalters@0 32
tomwalters@0 33 OBJS = hdr atob btoa bufwave \
tomwalters@0 34 bufframe \
tomwalters@0 35 chi convert edframe edwave \
tomwalters@0 36 fbank ftoa ftos gate \
tomwalters@0 37 integframe loudness merge naptosai \
tomwalters@0 38 noise op pitch_strength ptrain \
tomwalters@0 39 ramp saitonap scale sp_weights \
tomwalters@0 40 stats step stof swab \
tomwalters@0 41 tone filt1
tomwalters@0 42
tomwalters@0 43 SOBJS = acf acgram audim conv \
tomwalters@0 44 fft ftgram racf smooth \
tomwalters@0 45 gauss cosine
tomwalters@0 46
tomwalters@0 47 XOBJS = x11fonts x11gram x11play x11plot
tomwalters@0 48
tomwalters@0 49
tomwalters@0 50 $(OBJS) : strmatch.o options.o units.o header.o $$@.o
tomwalters@0 51
tomwalters@0 52 $(XOBJS) : x11coord.o $$@.o
tomwalters@0 53
tomwalters@0 54 $(SOBJS) : strmatch.o options.o units.o header.o sigproc.o $$@.o
tomwalters@0 55
tomwalters@0 56
tomwalters@0 57 ############################################################################
tomwalters@0 58 # dependencies
tomwalters@0 59
tomwalters@0 60 x11gram.o : x11coord.h
tomwalters@0 61 x11fonts.o : x11coord.h
tomwalters@0 62 x11play.o : x11coord.h
tomwalters@0 63 x11plot.o : x11coord.h
tomwalters@0 64 x11coord.o : x11coord.h
tomwalters@0 65
tomwalters@0 66 strmatch.o : strmatch.h
tomwalters@0 67 options.o : options.h strmatch.h
tomwalters@0 68 units.o : units.h strmatch.h
tomwalters@0 69 header.o : header.h units.h
tomwalters@0 70 sigproc.o : sigproc.h
tomwalters@0 71
tomwalters@0 72 ftos.o : options.h
tomwalters@0 73 stof.o : options.h
tomwalters@0 74
tomwalters@0 75 op.o : options.h strmatch.h
tomwalters@0 76
tomwalters@0 77 hdr.o : strmatch.h header.h
tomwalters@0 78
tomwalters@0 79 integframe.o : options.h strmatch.h header.h
tomwalters@0 80 ftoa.o : options.h strmatch.h header.h
tomwalters@0 81
tomwalters@0 82 atob.o : options.h units.h strmatch.h
tomwalters@0 83 btoa.o : options.h units.h strmatch.h
tomwalters@0 84 edwave.o : options.h units.h strmatch.h
tomwalters@0 85 bufwave.o : options.h units.h strmatch.h
tomwalters@0 86 convert.o : options.h units.h strmatch.h
tomwalters@0 87 loudness.o : options.h units.h strmatch.h
tomwalters@0 88 pitch_strength.o : options.h units.h strmatch.h
tomwalters@0 89 ptrain.o : options.h units.h strmatch.h
tomwalters@0 90 tone.o : options.h units.h strmatch.h
tomwalters@0 91 merge.o : options.h units.h strmatch.h
tomwalters@0 92 noise.o : options.h units.h strmatch.h
tomwalters@0 93 ramp.o : options.h units.h strmatch.h
tomwalters@0 94 swab.o : options.h units.h strmatch.h
tomwalters@0 95 stats.o : options.h units.h strmatch.h
tomwalters@0 96 scale.o : options.h units.h strmatch.h
tomwalters@0 97 chi.o : options.h units.h strmatch.h
tomwalters@0 98 filt1.o : options.h units.h strmatch.h
tomwalters@0 99 step.o : options.h units.h strmatch.h
tomwalters@0 100 gate.o : options.h units.h strmatch.h
tomwalters@0 101
tomwalters@0 102 naptosai.o : options.h units.h strmatch.h header.h
tomwalters@0 103 saitonap.o : options.h units.h strmatch.h header.h
tomwalters@0 104 bufframe.o : options.h units.h strmatch.h header.h
tomwalters@0 105 sp_weights.o : options.h units.h strmatch.h header.h
tomwalters@0 106
tomwalters@0 107 fbank.o : options.h units.h strmatch.h header.h freqs.c
tomwalters@0 108 edframe.o : options.h units.h strmatch.h header.h freqs.c
tomwalters@0 109
tomwalters@0 110 fft.o : options.h units.h strmatch.h sigproc.h
tomwalters@0 111 acf.o : options.h units.h strmatch.h sigproc.h
tomwalters@0 112 racf.o : options.h units.h strmatch.h sigproc.h
tomwalters@0 113 conv.o : options.h units.h strmatch.h sigproc.h
tomwalters@0 114 smooth.o : options.h units.h strmatch.h sigproc.h
tomwalters@0 115 gauss.o : options.h units.h strmatch.h sigproc.h
tomwalters@0 116 cosine.o : options.h units.h strmatch.h sigproc.h
tomwalters@0 117
tomwalters@0 118 acgram.o : options.h units.h strmatch.h header.h sigproc.h
tomwalters@0 119 ftgram.o : options.h units.h strmatch.h header.h sigproc.h
tomwalters@0 120 audim.o : options.h units.h strmatch.h header.h sigproc.h
tomwalters@0 121
tomwalters@0 122
tomwalters@0 123