|
From: Mattias A. <mat...@us...> - 2001-04-27 14:39:57
|
The following file was modified in apps/bluetooth/experimental: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.3 1.4=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: * added btconfig The diff of the modified file(s): --- Makefile 2001/03/21 18:31:22 1.3 +++ Makefile 2001/04/27 14:39:50 1.4 @@ -5,7 +5,7 @@ include $(APPS)/Rules.elinux endif =20 -PROGS =3D btdm memul bti btinq bttest btcon btsend btdisc +PROGS =3D btdm memul bti btinq bttest btcon btsend btdisc btconfig =20 # Define HAVE_READLINE_READLINE if you have readline support, with the inc= lude # files in $(include_dir)/readline. Define HAVE_READLINE if you have the @@ -28,6 +28,7 @@ BTDISCOBJS =3D btdisc.o bt_if.o bt_misc.o BTINQOBJS =3D btinq.o bt_if.o bt_misc.o BTTESTOBJS =3D bttest.o bt_misc.o bt_vendor.o bt_if.o +BTCONFIGOBJS =3D btconfig.o bt_if.o bt_misc.o =20 ifdef HAVE_READLINE_READLINE LDLIBS +=3D -lreadline -ltermcap @@ -69,6 +70,9 @@ =20 bttest: $(BTTESTOBJS) $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ + +btconfig: $(BTCONFIGOBJS) + $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ =20 install: $(PROGS) $(INSTALL) -d $(INSTDIR) |