summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-11-12 18:44:43 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-11-12 18:44:43 +0000
commiteb083cbd1598b71d144bf4cb05a204c56ddd6025 (patch)
tree424d9ea19c1d0fadb70fca812ef9549e37e92719
parent81c0a427c021d8e8d377b8b9dc71f88c300ef387 (diff)
downloadATCD-eb083cbd1598b71d144bf4cb05a204c56ddd6025.tar.gz
ChangeLogTag: Wed Nov 12 12:43:14 2003 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog8
-rw-r--r--bin/MakeProjectCreator/templates/gnu.mpd11
2 files changed, 17 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e9f382f45e0..74cae89f7f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Wed Nov 12 12:43:14 2003 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/templates/gnu.mpd:
+
+ Added LIB_UNCHECKED and SHLIB_UNCHECKED. Added a line to the
+ realclean rule that removes BIN_UNCHECKED, LIB_UNCHECKED and
+ SHLIB_UNCHECKED.
+
Wed Nov 12 11:21:55 2003 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/modules/ProjectCreator.pm:
diff --git a/bin/MakeProjectCreator/templates/gnu.mpd b/bin/MakeProjectCreator/templates/gnu.mpd
index be74a474951..72390389316 100644
--- a/bin/MakeProjectCreator/templates/gnu.mpd
+++ b/bin/MakeProjectCreator/templates/gnu.mpd
@@ -16,13 +16,19 @@ DEPENDENCY_FILE = .depend.<%project_file%>
BIN_UNCHECKED = <%exename%>
<%endif%>
<%if(staticname)%>
-LIB = lib<%staticname%>.a
+
+## LIB may be set to empty later on in this file
+LIB_UNCHECKED = lib<%staticname%>.a
+LIB = $(LIB_UNCHECKED)
<%if(!sharedname)%>
static_libs_only = 1
<%endif%>
<%endif%>
<%if(sharedname)%>
-SHLIB = lib<%sharedname%>.$(SOEXT)
+
+## SHLIB may be set to empty later on in this file
+SHLIB_UNCHECKED = lib<%sharedname%>.$(SOEXT)
+SHLIB = $(SHLIB_UNCHECKED)
<%endif%>
<%if(tao)%>
@@ -520,6 +526,7 @@ endif
<%endif%>
realclean: clean <%compclean%>
+ -$(RM) $(BIN_UNCHECKED) $(LIB_UNCHECKED) $(SHLIB_UNCHECKED)
<%if(idl_files)%>
-$(RM) $(foreach ext, $(IDL_EXT), $(foreach file, $(IDL_FILES), $(file)$(ext)))
<%endif%>