cleaned up some of the document making
[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 # Python wrapper:
23 # If you want to build the python wrapper, change this to yes.
24 with_python = no
25
26
27 # Perl wrapper:
28 # If you want to build the perl wrapper, change this to yes.
29 with_perl = no
30
31
32 # Installation:
33 # PREFIX is the directory prefix where the library/headers/etc. will
34 # reside.  Typically, this will be /usr or /usr/local.
35 # DESTDIR is prepended to installation paths only during the install
36 # phase, so you can install to a different directory than /.  Useful
37 # for packaging.
38
39 PREFIX = /usr
40 #DESTDIR = $(TOPDIR)/_install
41