File: Config

package info (click to toggle)
comedilib 0.7.18-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,776 kB
  • ctags: 883
  • sloc: ansic: 6,754; perl: 702; makefile: 249; sh: 61; python: 9
file content (45 lines) | stat: -rw-r--r-- 1,017 bytes parent folder | download
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
43
44
45
#!/usr/bin/make

#
# If you want to cross-compile Comedilib, change CROSS to something
# useful.
#
CROSS = 
#CROSS = i386-uclibc-
#CROSS = powerpc-linux-
CC = $(CROSS)gcc
AR = $(CROSS)ar
LD = $(CROSS)ld


# Optimization and debugging
CFLAGS = -Wall -Wstrict-prototypes
CFLAGS += -O2
CFLAGS += -DI18N # This enables gettextization
#CFLAGS += -g


# soname suffix.  This can be used to differentiate between a
# library compiled against glibc versus uClibc
#SONAME_SUFFIX = -uClibc0

# Python wrapper:
# If you want to build the python wrapper, change this to yes.
with_python = no


# Perl wrapper:
# If you want to build the perl wrapper, change this to yes.
with_perl = no


# Installation:
# PREFIX is the directory prefix where the library/headers/etc. will
# reside.  Typically, this will be /usr or /usr/local.
# DESTDIR is prepended to installation paths only during the install
# phase, so you can install to a different directory than /.  Useful
# for packaging.

PREFIX = /usr
#DESTDIR = $(TOPDIR)/_install