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