All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bluez-devel] Makefile.am dependency problem
@ 2005-10-26 22:05 Brad Midgley
  2005-10-26 22:13 ` Marcel Holtmann
  0 siblings, 1 reply; 4+ messages in thread
From: Brad Midgley @ 2005-10-26 22:05 UTC (permalink / raw)
  To: bluez-devel

Hi

I noticed a strange dependency problem... it's common in bluez where a
library is used. Header file changes don't force a recompile:

bmidgley@jag:/usr/src/bluez/utils/common$ make
make: Nothing to be done for `all'.
bmidgley@jag:/usr/src/bluez/utils/common$ touch textfile.h
bmidgley@jag:/usr/src/bluez/utils/common$ make
make: Nothing to be done for `all'.
bmidgley@jag:/usr/src/bluez/utils/common$ touch textfile.c
bmidgley@jag:/usr/src/bluez/utils/common$ make
gcc -DHAVE_CONFIG_H -I. -I. -I..     -Wall -O2 -c textfile.c
rm -f libtextfile.a
ar cru libtextfile.a textfile.o
ranlib libtextfile.a
/bin/sh ../libtool --tag=CC --mode=link gcc  -Wall -O2   -o
test_textfile  test_textfile.o libtextfile.a
gcc -Wall -O2 -o test_textfile test_textfile.o  libtextfile.a

Makefile.am has a line that mentions textfile.h:

libtextfile_a_SOURCES = textfile.h textfile.c

but that doesn't seem to be enough.

In btsco/sbc, the problem is similar, except that the .a is rebuilt
(when its .o object really needs to be rebuilt too):

bmidgley@jag:/usr/src/btsco/sbc$ touch sbc.h
bmidgley@jag:/usr/src/btsco/sbc$ make
rm -f libsbc.a
ar cru libsbc.a sbc.o
ranlib libsbc.a
gcc  -DUSE_FIXED  -Wall -O2   -o sbcdec  sbcdec.o libsbc.a -lasound -lm
-ldl -lpthread -lbluetooth
gcc  -DUSE_FIXED  -Wall -O2   -o sbcenc  sbcenc.o libsbc.a -lasound -lm
-ldl -lpthread -lbluetooth
bmidgley@jag:/usr/src/btsco/sbc$ touch sbc.c
bmidgley@jag:/usr/src/btsco/sbc$ make
gcc -DHAVE_CONFIG_H -I. -I. -I..     -DUSE_FIXED  -Wall -O2 -c `test -f
'sbc.c' || echo './'`sbc.c
rm -f libsbc.a
ar cru libsbc.a sbc.o
ranlib libsbc.a
gcc  -DUSE_FIXED  -Wall -O2   -o sbcdec  sbcdec.o libsbc.a -lasound -lm
-ldl -lpthread -lbluetooth
gcc  -DUSE_FIXED  -Wall -O2   -o sbcenc  sbcenc.o libsbc.a -lasound -lm
-ldl -lpthread -lbluetooth

Brad


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-devel] Makefile.am dependency problem
  2005-10-26 22:05 [Bluez-devel] Makefile.am dependency problem Brad Midgley
@ 2005-10-26 22:13 ` Marcel Holtmann
  2005-10-27  3:09   ` Brad Midgley
  0 siblings, 1 reply; 4+ messages in thread
From: Marcel Holtmann @ 2005-10-26 22:13 UTC (permalink / raw)
  To: bluez-devel

Hi Brad,

> I noticed a strange dependency problem... it's common in bluez where a
> library is used. Header file changes don't force a recompile:
> 
> bmidgley@jag:/usr/src/bluez/utils/common$ make
> make: Nothing to be done for `all'.
> bmidgley@jag:/usr/src/bluez/utils/common$ touch textfile.h
> bmidgley@jag:/usr/src/bluez/utils/common$ make
> make: Nothing to be done for `all'.
> bmidgley@jag:/usr/src/bluez/utils/common$ touch textfile.c
> bmidgley@jag:/usr/src/bluez/utils/common$ make
> gcc -DHAVE_CONFIG_H -I. -I. -I..     -Wall -O2 -c textfile.c
> rm -f libtextfile.a
> ar cru libtextfile.a textfile.o
> ranlib libtextfile.a
> /bin/sh ../libtool --tag=CC --mode=link gcc  -Wall -O2   -o
> test_textfile  test_textfile.o libtextfile.a
> gcc -Wall -O2 -o test_textfile test_textfile.o  libtextfile.a
> 
> Makefile.am has a line that mentions textfile.h:
> 
> libtextfile_a_SOURCES = textfile.h textfile.c
> 
> but that doesn't seem to be enough.

look at the bootstrap file. I forced this behavior.

Regards

Marcel




-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-devel] Makefile.am dependency problem
  2005-10-26 22:13 ` Marcel Holtmann
@ 2005-10-27  3:09   ` Brad Midgley
  2005-10-27  8:07     ` Marcel Holtmann
  0 siblings, 1 reply; 4+ messages in thread
From: Brad Midgley @ 2005-10-27  3:09 UTC (permalink / raw)
  To: bluez-devel

Marcel

>>I noticed a strange dependency problem... it's common in bluez where a
>>library is used. Header file changes don't force a recompile:
> 
> look at the bootstrap file. I forced this behavior.

The principle of "least surprise" would suggest that 'make' always
rebuilds everything as necessary. At least I would do that in my project
if I could figure out how to do it in the autosplat stuff.

Brad


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-devel] Makefile.am dependency problem
  2005-10-27  3:09   ` Brad Midgley
@ 2005-10-27  8:07     ` Marcel Holtmann
  0 siblings, 0 replies; 4+ messages in thread
From: Marcel Holtmann @ 2005-10-27  8:07 UTC (permalink / raw)
  To: bluez-devel

Hi Brad,

> >>I noticed a strange dependency problem... it's common in bluez where a
> >>library is used. Header file changes don't force a recompile:
> > 
> > look at the bootstrap file. I forced this behavior.
> 
> The principle of "least surprise" would suggest that 'make' always
> rebuilds everything as necessary. At least I would do that in my project
> if I could figure out how to do it in the autosplat stuff.

I changed it in the BlueZ CVS to give it a try again. I can't remember
why I disabled it, but there was a reason for it. You might wanna take a
look at bootstrap and bootstrap-configure now.

Regards

Marcel




-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-10-27  8:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-26 22:05 [Bluez-devel] Makefile.am dependency problem Brad Midgley
2005-10-26 22:13 ` Marcel Holtmann
2005-10-27  3:09   ` Brad Midgley
2005-10-27  8:07     ` Marcel Holtmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.