|
From: Carlo W. <li...@us...> - 2001-12-30 02:05:37
|
CVSROOT : /cvsroot/libcw
Module : src
Branch tags: branch-threading
Commit time: 2001-11-30 02:05:36 UTC
Modified files:
Tag: branch-threading
libcwd/documentation/tutorial/Makefile
Log message:
Bug fixes, better dependencies and more bug fixes.
---------------------- diff included ----------------------
Index: src/libcwd/documentation/tutorial/Makefile
diff -u src/libcwd/documentation/tutorial/Makefile:1.1.2.2 src/libcwd/documentation/tutorial/Makefile:1.1.2.3
--- src/libcwd/documentation/tutorial/Makefile:1.1.2.2 Sat Dec 29 17:22:09 2001
+++ src/libcwd/documentation/tutorial/Makefile Sat Dec 29 18:05:26 2001
@@ -20,10 +20,10 @@
tut7.m4: tut7.in $(AOUT7)
awk -f moo.awk $< > $@
-$(SOURCES5): tut5.in ../../.libs/libcwd.so
+$(SOURCES5): tut5.in
@$(MAKE) -s $@-cc
-$(SOURCES7): tut7.in ../../.libs/libcwd.so
+$(SOURCES7): tut7.in
@$(MAKE) -s $@-cc
%-cc:
@@ -47,16 +47,16 @@
exit 1; \
fi
-examples5/%-bin: %.cc examples5/debug.o examples5/sys.h
+examples5/%-bin: examples5/%.cc examples5/debug.o examples5/debug.h examples5/sys.h examples5/sysinclude/libbooster/debug.h examples5/sysinclude/libturbo/debug.h ../../.libs/libcwd.so
$(CXX) -g -pipe -DCWDEBUG -Iexamples5 -I- -Iexamples5/sysinclude -I../../include \
- $< examples5/debug.o -L../../.libs/libcwd.so -Wl,-rpath,$(shell (../../.libs; pwd)) -lcwd -o $@
+ $< examples5/debug.o -L../../.libs -Wl,-rpath,$(shell (cd ../../.libs; pwd)) -lcwd -o $@
-examples5/debug.o: examples5/debug.cc
+examples5/debug.o: examples5/debug.cc examples5/debug.h examples5/sys.h examples5/sysinclude/libbooster/debug.h examples5/sysinclude/libturbo/debug.h
$(CXX) -g -pipe -DCWDEBUG -Iexamples5 -Iexamples5/sysinclude -I../../include -c $< -o $@
-examples7/%-bin: %.cc examples7/sys.h examples7/debug.h
+examples7/%-bin: examples7/%.cc examples7/sys.h examples7/debug.h ../../.libs/libcwd.so
$(CXX) -g -pipe -DCWDEBUG -Iexamples7 -I- -I../../include \
- $< -L../../.libs/libcwd.so -Wl,-rpath,$(shell (../../.libs; pwd)) -lcwd -o $@
+ $< -L../../.libs -Wl,-rpath,$(shell (cd ../../.libs; pwd)) -lcwd -o $@
maintainer-clean:
rm -f examples5/debug.* examples5/test* core examples7/test* tut5.m4 tut7.m4 *.html
----------------------- End of diff -----------------------
|