debuggers.hg
changeset 3695:1ba40f806898
bitkeeper revision 1.1159.223.64 (42048c67tDD9EILuuYdpEx-vM6LTnw)
Name: tools-misc-TARGETS.patch
Description: Split compile/link stages
distcc behaves much better when you compile and link in 2 separate steps.
Plus, this is a more standard way of doing things.
Signed-off-by: Adam Heath <doogie@brainfood.com>
Signed-off-by: ian.pratt@cl.cam.ac.uk
Name: tools-misc-TARGETS.patch
Description: Split compile/link stages
distcc behaves much better when you compile and link in 2 separate steps.
Plus, this is a more standard way of doing things.
Signed-off-by: Adam Heath <doogie@brainfood.com>
Signed-off-by: ian.pratt@cl.cam.ac.uk
author | iap10@labyrinth.cl.cam.ac.uk |
---|---|
date | Sat Feb 05 09:05:43 2005 +0000 (2005-02-05) |
parents | fb875591fd72 |
children | 70b22eeb86c1 |
files | tools/misc/Makefile |
line diff
1.1 --- a/tools/misc/Makefile Thu Feb 03 20:10:15 2005 +0000 1.2 +++ b/tools/misc/Makefile Sat Feb 05 09:05:43 2005 +0000 1.3 @@ -34,5 +34,8 @@ clean: 1.4 $(RM) *.o $(TARGETS) *~ 1.5 $(MAKE) -C miniterm clean 1.6 1.7 -%: %.c $(HDRS) Makefile 1.8 +%.o: %.c $(HDRS) Makefile 1.9 + $(CC) -c $(CFLAGS) -o $@ $< 1.10 + 1.11 +$(TARGETS): %: %.o Makefile 1.12 $(CC) $(CFLAGS) -o $@ $< -L$(XEN_LIBXC) -lxc -L$(XEN_LIBXUTIL) -lxutil