|
From: Carlo W. <li...@us...> - 2001-12-30 00:55:15
|
CVSROOT : /cvsroot/libcw
Module : src
Branch tags: branch-threading
Commit time: 2001-11-30 00:55:14 UTC
Removed files:
Tag: branch-threading
libcwd/documentation/tutorial/examples7/Makedefs.h
libcwd/documentation/tutorial/examples7/Makefile
Log message:
Work in progress.
---------------------- diff included ----------------------
Index: src/libcwd/documentation/tutorial/examples7/Makedefs.h
diff -u src/libcwd/documentation/tutorial/examples7/Makedefs.h:1.1.2.1 src/libcwd/documentation/tutorial/examples7/Makedefs.h:removed
--- src/libcwd/documentation/tutorial/examples7/Makedefs.h:1.1.2.1 Thu Dec 27 20:12:00 2001
+++ src/libcwd/documentation/tutorial/examples7/Makedefs.h Sat Dec 29 16:55:14 2001
@@ -1,103 +0,0 @@
-# This file contains the Project specific variables.
-#
-# Extra parameters can be added to the following variables:
-#
-# CFLAGS, CXXFLAGS, INCLUDEFLAGS, SYSTEMINCLUDEFLAGS, LDFLAGS.
-#
-# Always use a += for these variables to *add* parameters rather
-# than overriding them!
-
-#
-# CFLAGS / CXXFLAGS
-#
-# Project specific compiler flags.
-#
-# Use this when profiling:
-
-##CFLAGS=-pg -O6 -pipe
-##CXXFLAGS=-pg -O6 -pipe -fno-exceptions
-##LDFLAGS=-pg
-
-# Add extra, project specific, defines here, etc.
-
-##CFLAGS+=-D__MYCLIB__
-CXXFLAGS+=-DCWDEBUG
-
-#
-# INCLUDEFLAGS
-#
-# Project specific "include" flags.
-#
-# These directories are searched when you use an #include "foobar.h"
-# in your source code.
-#
-# The given directories will be relative to the directory from which
-# the compiler is started, which is the directory that the source
-# file being compiled is in. Therefore always use -I$(BASEDIR) as
-# a prefix (BASEDIR is the directory this file is in).
-#
-# Note: If you want to add an include directory that is specific for
-# only one executable or library, you might want to add this -I flag
-# to the Makefile for that executable or library respectively instead.
-
-INCLUDEFLAGS+=-I$(BASEDIR)
-
-#
-# SYSTEMINCLUDEFLAGS
-#
-# Project specific system <include> flags.
-#
-# These directories are searched when you use a #include <foobar.h>
-# in your source code.
-#
-# Note: If you are writting a library, then you want to use
-# #include <yourlib/foobar.h> in your headerfiles, because later on
-# these header files are installed in /usr/local/include for instance.
-# In that case you need to add -I$(BASEDIR)/include *here* instead
-# to in INCLUDEFLAGS above.
-#
-
-SYSTEMINCLUDEFLAGS+=-I$(BASEDIR)/sysinclude -I$(BASEDIR)/../../../include
-
-#
-# LDFLAGS
-#
-# Project specific linker flags (Overridden flags: -s or -pg ...)
-#
-# These flags are passed to the compiler at link time, these flags
-# are given a default value in $(PROTODIR)/Makedefs.h. You can
-# override them here.
-#
-
-LIBPATH:=$(shell (cd $(BASEDIR)/../../../.libs; pwd))
-LDFLAGS=-Wl,-rpath,$(LIBPATH)
-
-#
-# LIBFLAGS
-#
-# Project specific linker flags (Persistent flags: -L and -Wl,...)
-#
-# If you want to link your (test) executables with the latest version of
-# your project library instead of the version that was actually installed
-# in /usr/local (for example), then you need to add -L$(BASEDIR)/lib to
-# LIBFLAGS.
-
-LIBFLAGS+=-L$(BASEDIR)/../../../.libs
-
-#
-# DFLAGS
-#
-# Extra flags for generating dependencies.
-# The default is -MM, only including "local" headers.
-# Use this if you need dependencies on <system> headers,
-# (for example when you are writing a library and are using <headers>
-# with angle brackets yourself).
-
-##DFLAGS=-M
-
-#
-# CPPEXT
-#
-# The C++ extension that is used in this project. Correct this!
-
-CPPEXT=.cc
Index: src/libcwd/documentation/tutorial/examples7/Makefile
diff -u src/libcwd/documentation/tutorial/examples7/Makefile:1.1.2.1 src/libcwd/documentation/tutorial/examples7/Makefile:removed
--- src/libcwd/documentation/tutorial/examples7/Makefile:1.1.2.1 Thu Dec 27 20:12:00 2001
+++ src/libcwd/documentation/tutorial/examples7/Makefile Sat Dec 29 16:55:14 2001
@@ -1,13 +0,0 @@
-# List of subdirectories (automatically updated by `makeproto'):
-SUBDIRS=tut7.1 tut7.2 tut7.3
-
-#-----------------------------------------------------------------------------
-
-include $(PROTODIR)/base/PTMakefile
-
-# Add here project specific additions:
-
-#build::
-#depend::
-#clean::
-#real-clean::
----------------------- End of diff -----------------------
|