|
From: Peter K. <pk...@us...> - 2001-07-31 19:43:10
|
The following file was modified in linux/drivers/char/bluetooth: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.25 1.26=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Made it easier to build with support for BCSP and/or the unplug tests. The diff of the modified file(s): --- Makefile 2001/07/31 18:59:23 1.25 +++ Makefile 2001/07/31 19:43:08 1.26 @@ -43,13 +43,11 @@ # Standalone makefile rules #--------------------------------------------------------------------- =20 -# Uncomment this line to enable support for BCSP. -# If you do not know what this is, just leave it commented. -#INCLUDE_BCSP_SUPPORT =3D 1 +# Use 'make INCLUDE_BCSP_SUPPORT=3D1' to enable support for BCSP. +INCLUDE_BCSP_SUPPORT =3D 0 =20 -# Uncomment this line to enable the unplug testcases. -# If you do not know what this is, just leave it commented. -#INCLUDE_UNPLUG_TEST =3D 1 +# Use 'make INCLUDE_UNPLUG_TEST=3D1' to enable the unplug testcases. +INCLUDE_UNPLUG_TEST =3D 0 =20 # The INCLUDEDIR variable allows LSB compliant distros to be able to compi= le # the module correctly. Use 'make INCLUDEDIR=3D/usr/src/linux/include' whe= re @@ -64,12 +62,12 @@ MODFLAGS =3D -DMODVERSIONS -include $(INCLUDEDIR)/linux/modversions.h CFLAGS =3D -D__KERNEL__ -DMODULE -I../../../include -I$(INCLUDEDIR) -Wa= ll -Wstrict-prototypes -O2 -fomit-frame-pointer -fno-strength-reduce $(MODF= LAGS) -MD =20 -ifdef INCLUDE_UNPLUG_TEST +ifeq ($(INCLUDE_UNPLUG_TEST),1) OBJS +=3D $(TOBJS) CFLAGS +=3D -DCONFIG_BLUETOOTH_UNPLUG_TEST endif =20 -ifdef INCLUDE_BCSP_SUPPORT +ifeq ($(INCLUDE_BCSP_SUPPORT),1) OBJS +=3D $(BOBJS) CFLAGS +=3D -DCONFIG_BLUETOOTH_SUPPORT_BCSP endif |