summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-02-05 19:39:01 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-02-05 19:39:01 +0000
commit936c9911e5174dbf4fd5b4107c4299d852b155bf (patch)
tree8de1699173686729605d6654a83bbf78dfc40247
parentd62c8f8f1b1edc1e3a73bf6e23074769b50236c7 (diff)
downloadATCD-936c9911e5174dbf4fd5b4107c4299d852b155bf.tar.gz
ChangeLogTag: Thu Feb 5 13:38:15 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog26
-rw-r--r--bin/MakeProjectCreator/templates/bmake.mpd20
2 files changed, 34 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog
index 2421709e3cf..e75b198c5a9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,19 +1,25 @@
+Thu Feb 5 13:38:15 2004 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/templates/bmake.mpd:
+
+ Added rules for all of the MPC supported C++ file extensions.
+
Thu Feb 5 11:25:50 2004 Boris Kolpackov <boris@dre.vanderbilt.edu>
- * include/makeinclude/rules.bin.GNU:
- * include/makeinclude/rules.lib.GNU:
- * include/makeinclude/rules.local.GNU:
+ * include/makeinclude/rules.bin.GNU:
+ * include/makeinclude/rules.lib.GNU:
+ * include/makeinclude/rules.local.GNU:
- Modified build rules to allow projects with sources in sub-
- directoris. Thanks to Don Hinton <dhinton@dre.vanderbilt.edu>
- for his help.
+ Modified build rules to allow projects with sources in sub-
+ directoris. Thanks to Don Hinton <dhinton@dre.vanderbilt.edu>
+ for his help.
Thu Feb 5 08:48:27 2004 Douglas C. Schmidt <schmidt@cs.wustl.edu>
- * ace/Thread_Manager.{h,cpp}: added a new methods called
- testterminate() which checks to see whether a thread has
- terminated or not. Thanks to Avi Ouziel <ouziel_a@hotmail.com>
- for this suggestion.
+ * ace/Thread_Manager.{h,cpp}: added a new methods called
+ testterminate() which checks to see whether a thread has
+ terminated or not. Thanks to Avi Ouziel <ouziel_a@hotmail.com>
+ for this suggestion.
Thu Feb 5 07:55:10 2004 Chad Elliott <elliott_c@ociweb.com>
diff --git a/bin/MakeProjectCreator/templates/bmake.mpd b/bin/MakeProjectCreator/templates/bmake.mpd
index 5fdd8d70681..919b3240098 100644
--- a/bin/MakeProjectCreator/templates/bmake.mpd
+++ b/bin/MakeProjectCreator/templates/bmake.mpd
@@ -49,6 +49,7 @@ NAME = <%staticname%>$(LIBMODIFIER)
<%endif%>
<%endif%>
<%endif%>
+CPPDIR = <%cppdir%>
<%if(exename || sharedname || staticname)%>
OBJFILES = \
@@ -181,12 +182,27 @@ $(OUTPUTDIR)$(NAME)$(LIB_EXT): $(OBJFILES)
<%endif%>
.path$(OBJ_EXT) = $(INTERMEDIATE)
-.path.cpp = <%cppdir%>
+.path.cpp = $(CPPDIR)
.cpp$(OBJ_EXT):
@if not exist "$(INTERMEDIATE)" mkdir "$(INTERMEDIATE)"
$(CC) $(OCFLAGS) $(THREADFLAGS) $(CFLAGS) -c -n$(@D) $<
-.path.c = <%cppdir%>
+.path.cxx = $(CPPDIR)
+.cxx$(OBJ_EXT):
+ @if not exist "$(INTERMEDIATE)" mkdir "$(INTERMEDIATE)"
+ $(CC) $(OCFLAGS) $(THREADFLAGS) $(CFLAGS) -c -n$(@D) $<
+
+.path.cc = $(CPPDIR)
+.cc$(OBJ_EXT):
+ @if not exist "$(INTERMEDIATE)" mkdir "$(INTERMEDIATE)"
+ $(CC) $(OCFLAGS) $(THREADFLAGS) $(CFLAGS) -c -n$(@D) $<
+
+.path.C = $(CPPDIR)
+.C$(OBJ_EXT):
+ @if not exist "$(INTERMEDIATE)" mkdir "$(INTERMEDIATE)"
+ $(CC) $(OCFLAGS) $(THREADFLAGS) $(CFLAGS) -c -n$(@D) $<
+
+.path.c = $(CPPDIR)
.c$(OBJ_EXT):
@if not exist "$(INTERMEDIATE)" mkdir "$(INTERMEDIATE)"
$(CC) $(OCFLAGS) $(THREADFLAGS) $(CFLAGS) -c -n$(@D) $<