|
From: Peter K. <pk...@us...> - 2001-03-10 12:56:18
|
The following file was modified in apps/bluetooth/btd: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.8 1.9=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Remove .d-files when doing make clean. The diff of the modified file(s): --- Makefile 2001/03/10 09:17:25 1.8 +++ Makefile 2001/03/10 12:57:38 1.9 @@ -7,6 +7,13 @@ =20 PROGS =3D btd =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 +# include files in $(include_dir). Define neither if you do not want to use +# readline. +HAVE_READLINE_READLINE =3D 1 +#HAVE_READLINE =3D 1 + INSTDIR =3D $(prefix)/bin/ INSTMODE =3D 0755 INSTOWNER =3D root @@ -16,13 +23,6 @@ =20 OBJS =3D btd.o =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 -# include files in $(include_dir). Define neither if you do not want to use -# readline. -HAVE_READLINE_READLINE =3D 1 -#HAVE_READLINE =3D 1 - ifdef HAVE_READLINE_READLINE LDLIBS +=3D -lreadline -ltermcap CFLAGS +=3D -DHAVE_READLINE_READLINE -I$(prefix)/include @@ -42,6 +42,6 @@ $(INSTALL) -m $(INSTMODE) -o $(INSTOWNER) -g $(INSTGROUP) $(PROGS) $(INST= DIR) =20 clean: - rm -f $(PROGS) *.o core + rm -f $(PROGS) *.o *.d core *~ =20 -include *.d |