fixes for boards where the device name is not the module name
[comedilib.git] / Config
1 #!/usr/bin/make
2
3 #
4 # If you want to cross-compile Comedilib, change CROSS to something
5 # useful.
6 #
7 CROSS = 
8 #CROSS = i386-uclibc-
9 #CROSS = powerpc-linux-
10 CC = $(CROSS)gcc
11 AR = $(CROSS)ar
12 LD = $(CROSS)ld
13
14
15 # Optimization and debugging
16 CFLAGS = -Wall -Wstrict-prototypes
17 CFLAGS += -O2
18 CFLAGS += -DI18N # This enables gettextization
19 #CFLAGS += -g
20
21
22 # soname suffix.  This can be used to differentiate between a
23 # library compiled against glibc versus uClibc
24 #SONAME_SUFFIX = -uClibc0
25
26 # Python wrapper:
27 # If you want to build the python wrapper, change this to yes.
28 with_python = no
29
30
31 # Perl wrapper:
32 # If you want to build the perl wrapper, change this to yes.
33 with_perl = no
34
35
36 # Installation:
37 # PREFIX is the directory prefix where the library/headers/etc. will
38 # reside.  Typically, this will be /usr or /usr/local.
39 # DESTDIR is prepended to installation paths only during the install
40 # phase, so you can install to a different directory than /.  Useful
41 # for packaging.
42
43 PREFIX = /usr
44 #DESTDIR = $(TOPDIR)/_install
45