|
From: Marcus A. S. <mar...@us...> - 2001-03-09 20:07:39
|
The following file was modified in apps/bluetooth/btd: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.6 1.7=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Added "-MD" and "-include *.d" to Makefiles to include dependency checking. The diff of the modified file(s): --- Makefile 2001/03/09 13:18:02 1.6 +++ Makefile 2001/03/09 20:08:57 1.7 @@ -25,12 +25,12 @@ =20 ifdef HAVE_READLINE_READLINE LDLIBS +=3D -lreadline -ltermcap -CFLAGS +=3D -DHAVE_READLINE_READLINE -I$(prefix)/include +CFLAGS +=3D -DHAVE_READLINE_READLINE -I$(prefix)/include -MD endif =20 ifdef HAVE_READLINE LDLIBS +=3D -lreadline -ltermcap -CFLAGS +=3D -DHAVE_READLINE -I$(prefix)/include +CFLAGS +=3D -DHAVE_READLINE -I$(prefix)/include -MD endif =20 all: $(PROGS) @@ -45,6 +45,7 @@ depend: makedepend -Y $(SRCS) 2>/dev/null =20 +-include *.d # ------------------------------------------------------------------------- # The following is used to automatically generate dependencies. # DO NOT DELETE |
|
From: Peter K. <pk...@us...> - 2001-03-10 09:15:35
|
The following file was modified in apps/bluetooth/btd: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.7 1.8=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Always add -MD to $CFLAGS, even when compiling without readline. The diff of the modified file(s): --- Makefile 2001/03/09 20:08:57 1.7 +++ Makefile 2001/03/10 09:17:25 1.8 @@ -25,14 +25,16 @@ =20 ifdef HAVE_READLINE_READLINE LDLIBS +=3D -lreadline -ltermcap -CFLAGS +=3D -DHAVE_READLINE_READLINE -I$(prefix)/include -MD +CFLAGS +=3D -DHAVE_READLINE_READLINE -I$(prefix)/include endif =20 ifdef HAVE_READLINE LDLIBS +=3D -lreadline -ltermcap -CFLAGS +=3D -DHAVE_READLINE -I$(prefix)/include -MD +CFLAGS +=3D -DHAVE_READLINE -I$(prefix)/include endif =20 +CFLAGS +=3D -MD + all: $(PROGS) =20 install: $(PROGS) @@ -42,12 +44,4 @@ clean: rm -f $(PROGS) *.o core =20 -depend: - makedepend -Y $(SRCS) 2>/dev/null - -include *.d -# ------------------------------------------------------------------------- -# The following is used to automatically generate dependencies. -# DO NOT DELETE - -btd.o: btd.h |
|
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 |
|
From: Peter K. <pk...@us...> - 2001-05-07 11:26:30
|
The following file was modified in apps/bluetooth/btd: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.9 1.10=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Use AXIS_USABLE_LIBS instead of USE_UCLIBC. The diff of the modified file(s): --- Makefile 2001/03/10 12:57:38 1.9 +++ Makefile 2001/05/07 11:25:59 1.10 @@ -1,7 +1,7 @@ # $Id$ =20 ifdef APPS -USE_UCLIBC =3D 1 +AXIS_USABLE_LIBS =3D UCLIBC include $(APPS)/Rules.elinux endif =20 |
|
From: Peter K. <pk...@us...> - 2001-10-18 15:56:55
|
The following file was modified in apps/bluetooth/btd: Name Old version New version Comment ---- ----------- ----------- ------- Makefile 1.10 1.11=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Use -MMD instead of -MD to generate dependency files, as -MMD does not generate dependencies to system includes. The diff of the modified file(s): --- Makefile 2001/05/07 11:25:59 1.10 +++ Makefile 2001/10/18 15:56:25 1.11 @@ -33,7 +33,7 @@ CFLAGS +=3D -DHAVE_READLINE -I$(prefix)/include endif =20 -CFLAGS +=3D -MD +CFLAGS +=3D -MMD =20 all: $(PROGS) =20 |
|
From: Peter K. <pk...@us...> - 2002-09-27 12:59:34
|
The following file was modified in apps/bluetooth/btd: Name Old version New version Tag Comment ---- ----------- ----------- --- ------- Makefile 1.11 1.12=20=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Moved and renamed apps/Rules.elinux to tools/build/Rules.axis. The diff of the modified file(s): --- Makefile 18 Oct 2001 15:56:25 -0000 1.11 +++ Makefile 27 Sep 2002 12:59:02 -0000 1.12 @@ -1,9 +1,7 @@ # $Id$ =20 -ifdef APPS AXIS_USABLE_LIBS =3D UCLIBC -include $(APPS)/Rules.elinux -endif +-include $(AXIS_TOP_DIR)/tools/build/Rules.axis =20 PROGS =3D btd =20 |
|
From: Peter K. <pk...@us...> - 2003-05-05 10:24:19
|
The following file was modified in apps/bluetooth/btd: Name Old version New version Tag Comment ---- ----------- ----------- --- ------- Makefile 1.12 1.13=20=20=20=20=20=20=20=20=20=20=20=20=20=20 The accompanying log: Made it possible to build with glibc. The diff of the modified file(s): --- Makefile 2002/09/27 12:59:02 1.12 +++ Makefile 2003/05/05 10:24:18 1.13 @@ -1,6 +1,6 @@ # $Id$ =20 -AXIS_USABLE_LIBS =3D UCLIBC +AXIS_USABLE_LIBS =3D GLIBC UCLIBC -include $(AXIS_TOP_DIR)/tools/build/Rules.axis =20 PROGS =3D btd @@ -34,6 +34,8 @@ CFLAGS +=3D -MMD =20 all: $(PROGS) + +$(PROGS): $(OBJS) =20 install: $(PROGS) $(INSTALL) -d $(INSTDIR) |