ready for tagging
[libnl.git] / Makefile.opts.in
1 #
2 # Makefile.opts.in
3 #
4 #       This library is free software; you can redistribute it and/or
5 #       modify it under the terms of the GNU Lesser General Public
6 #       License as published by the Free Software Foundation version 2.1
7 #       of the License.
8 #
9 # Copyright (c) 2003-2006 Thomas Graf <tgraf@suug.ch>
10 #
11
12 CC               := @CC@
13 CFLAGS           := @CFLAGS@
14 LDFLAGS          := @LDFLAGS@
15 CPPFLAGS         := @CPPFLAGS@
16 PACKAGE_NAME     := @PACKAGE_NAME@
17 PACKAGE_VERSION  := @PACKAGE_VERSION@
18
19 LIBNL_LIB        := @LIBNL_LIB@
20
21 prefix           := @prefix@
22 exec_prefix      := @exec_prefix@
23 libdir           := @libdir@
24 includedir       := @includedir@
25 mandir           := @mandir@
26 sysconfdir       := @sysconfdir@
27
28 AR               := ar
29 RM               := rm
30 LN               := ln
31
32 DEPFLAGS         += -M -I../include/ -I. $(CPPFLAGS)
33 CFLAGS           += -g -I./include -I../include -I. $(CPPFLAGS) -D_GNU_SOURCE
34 MAKEFLAGS        += --no-print-directory
35
36 ifeq ($(CC),gcc)
37 CFLAGS           += -Wall -ggdb
38 endif
39