summaryrefslogtreecommitdiffstats
path: root/src/Makefile.in
diff options
context:
space:
mode:
authorMax Krasnyansky <maxk@qualcomm.com>2002-03-22 19:45:46 +0000
committerMax Krasnyansky <maxk@qualcomm.com>2002-03-22 19:45:46 +0000
commit0a6472fe170438016c23c71d9129e627f26cd398 (patch)
treecfd8c48c070216581a10a333fbf09da5130b6a46 /src/Makefile.in
parenta51747b602f9cd03c7431788f80431c1710f5827 (diff)
Fixed compiler options and warnings.
Proper parameter types. Cleanup.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r--src/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index 6da2db02..530d0757 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -85,7 +85,7 @@ lib_LTLIBRARIES = libbluetooth.la
libbluetooth_la_SOURCES = bluetooth.c hci.c
libbluetooth_la_LDFLAGS = -version-info 1:0:0
-CFLAGS = -I../include
+AM_CFLAGS = -I../include
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_CLEAN_FILES =
LTLIBRARIES = $(lib_LTLIBRARIES)
@@ -97,6 +97,7 @@ LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
libbluetooth_la_LIBADD =
libbluetooth_la_OBJECTS = bluetooth.lo hci.lo
+CFLAGS = @CFLAGS@
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)