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
|
*** old/Imakefile Thu Apr 9 19:57:34 1998
--- Imakefile Mon Jul 12 15:28:20 1999
***************
*** 132,137 ****
--- 132,154 ----
ARCH_OBJS = utils.o
#endif
+
+ #if defined(FreeBSDArchitecture)
+ XCOMM Extra defines, include directories, loading flags, and libraries needed
+ XCOMM for the FreeBSD version. The assumption is that you are using Gnu gcc/g++
+
+ ARCH_CCDEFINES = -DVOXWARE_DACS -DXDisplay=_XDisplay
+ ARCH_CCFLAGS =
+ ARCH_CCINCLUDES =
+ ARCH_CCLDFLAGS = -L/usr/local/lib
+ ARCH_CCLDLIBS = $(APP_FORTLIBS) -lm
+ DEBUG_CCFLAGS = -Ddebug
+
+ DAC_OBJS = conv_config.o conv_device.o vw_converter.o
+ ARCH_OBJS = utils.o
+ #endif
+
+
#if defined(i386SVR4Architecture)
XCOMM This assumes you have the SoundBlaster card on your machine
ARCH_CCDEFINES = -DSOUNDBLASTER
***************
*** 243,248 ****
--- 260,270 ----
MakeObjectFromSrcFlags(sgi_dac, $(OPTIMIZE_CCFLAGS))
#endif
#if defined(LinuxArchitecture)
+ MakeObjectFromSrcFlags(utils, $(OPTIMIZE_CCFLAGS))
+ MakeObjectFromSrcFlags(conv_device, $(OPTIMIZE_CCFLAGS))
+ MakeObjectFromSrcFlags(vw_converter, $(OPTIMIZE_CCFLAGS))
+ #endif
+ #if defined(FreeBSDArchitecture)
MakeObjectFromSrcFlags(utils, $(OPTIMIZE_CCFLAGS))
MakeObjectFromSrcFlags(conv_device, $(OPTIMIZE_CCFLAGS))
MakeObjectFromSrcFlags(vw_converter, $(OPTIMIZE_CCFLAGS))
|