|
From: Alain P. <apa...@us...> - 2002-04-23 09:05:20
|
The following file was modified in apps/bluetooth/experimental: Name Old version New version Tag Comment ---- ----------- ----------- --- ------- Makefile 1.13 1.14=20=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Add automatic compilation of btsec, a simple security manager The diff of the modified file(s): --- Makefile 19 Feb 2002 19:03:44 -0000 1.13 +++ Makefile 23 Apr 2002 09:05:16 -0000 1.14 @@ -5,7 +5,7 @@ include $(APPS)/Rules.elinux endif =20 -PROGS =3D btdm memul bti btinq btcon btdisc btconfig btping # btsend b= ttest +PROGS =3D btdm memul bti btinq btcon btdisc btconfig btping btsec # bt= send bttest =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 @@ -33,6 +33,7 @@ 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 +BTSECOBJS =3D btsec.o bt_linkkey_common.o =20 ifdef HAVE_READLINE_READLINE LDLIBS +=3D -lreadline -ltermcap @@ -87,6 +88,9 @@ $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ =20 btping: $(BTPINGOBJS) + $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ + +btsec: $(BTSECOBJS) $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ =20 install: $(PROGS) |