summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-09-03 16:56:45 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-09-03 16:56:45 +0000
commit21540d07016aa900e4345bd152f7ff6791bf9799 (patch)
tree57893a4d0389d862dbf2987d7623b9483ad4a9b0
parent8902eedd65d5191b53071ee3a77c87d272bef52f (diff)
downloadATCD-21540d07016aa900e4345bd152f7ff6791bf9799.tar.gz
ChangeLogTag: Wed Sep 3 11:53:53 2003 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog8
-rw-r--r--bin/MakeProjectCreator/templates/gnu.mpd2
-rw-r--r--bin/MakeProjectCreator/templates/make.mpd1
3 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 83bcc92a20f..7fc574bd15f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Wed Sep 3 11:53:53 2003 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/templates/gnu.mpd:
+ * bin/MakeProjectCreator/templates/make.mpd:
+
+ Added a dependency to all source files upon any generated files
+ (be it idl or custom build).
+
Wed Sep 3 09:44:01 2003 Chad Elliott <elliott_c@ociweb.com>
* bin/MakeProjectCreator/templates/gnu.mpd:
diff --git a/bin/MakeProjectCreator/templates/gnu.mpd b/bin/MakeProjectCreator/templates/gnu.mpd
index fb21979f5d9..22ccf7e9cc2 100644
--- a/bin/MakeProjectCreator/templates/gnu.mpd
+++ b/bin/MakeProjectCreator/templates/gnu.mpd
@@ -285,6 +285,7 @@ ifneq ($(LIB),)
<%endif%>
<%endif%>
all: idl_stubs
+<%source_files%>: idl_stubs
endif
<%endif%>
@@ -405,6 +406,7 @@ GENERATED_DIRTY +=<%foreach(custom_type->input_file->output_files)%> <%if(flag_o
ifneq ($(GENERATED_DIRTY),)
.PRECIOUS: $(GENERATED_DIRTY)
all: $(GENERATED_DIRTY)
+<%source_files%>: $(GENERATED_DIRTY)
endif
<%endif%>
diff --git a/bin/MakeProjectCreator/templates/make.mpd b/bin/MakeProjectCreator/templates/make.mpd
index c94f7e66945..411d55b8f76 100644
--- a/bin/MakeProjectCreator/templates/make.mpd
+++ b/bin/MakeProjectCreator/templates/make.mpd
@@ -100,6 +100,7 @@ GENERATED_DIRTY +=<%foreach(custom_type->input_file->output_files)%> <%if(flag_o
<%endfor%>
.PRECIOUS: $(GENERATED_DIRTY)
all: $(GENERATED_DIRTY)
+<%source_files%>: $(GENERATED_DIRTY)
<%endif%>
<%if(exename)%>