|
From: Anders J. <and...@us...> - 2002-02-19 19:03:45
|
The following files were modified in apps/bluetooth/experimental: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.12 1.13=20=20=20=20=20=20=20=20=20=20=20=20 btping.c 1.1 Added The accompanying log: * Added btping. The diff of the modified file(s): --- Makefile 6 Feb 2002 11:31:56 -0000 1.12 +++ Makefile 19 Feb 2002 19:03:44 -0000 1.13 @@ -5,7 +5,7 @@ include $(APPS)/Rules.elinux endif =20 -PROGS =3D btdm memul bti btinq btcon btdisc btconfig # btsend bttest +PROGS =3D btdm memul bti btinq btcon btdisc btconfig btping # btsend b= ttest =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 @@ -32,6 +32,7 @@ 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_vendor.o bt_if.o bt_misc.o +BTPINGOBJS =3D btping.o bt_if.o bt_misc.o =20 ifdef HAVE_READLINE_READLINE LDLIBS +=3D -lreadline -ltermcap @@ -83,6 +84,9 @@ $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ =20 btconfig: $(BTCONFIGOBJS) + $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ + +btping: $(BTPINGOBJS) $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ =20 install: $(PROGS) |