summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2005-03-29 13:59:22 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2005-03-29 13:59:22 +0000
commitc945f555bbdc4f8e93a31bf77db4e07cfb742868 (patch)
treea1c5e016cbd89c23ae756bdf4adf65882ab7e8a5
parent2c287c8aa362a9cc98272e70719320049f88d9f7 (diff)
downloadATCD-c945f555bbdc4f8e93a31bf77db4e07cfb742868.tar.gz
ChangeLogTag: Tue Mar 29 07:58:40 2005 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog6
-rw-r--r--bin/MakeProjectCreator/templates/gnu.mpd7
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 530af81fdae..a0864e1a7f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Tue Mar 29 07:58:40 2005 Chad Elliott <elliott_c@ociweb.com>
+
+ * bin/MakeProjectCreator/templates/gnu.mpd:
+
+ Support the new postbuild keyword.
+
Tue Mar 29 06:21:34 2005 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 62542b20484..9bdf8ea427a 100644
--- a/bin/MakeProjectCreator/templates/gnu.mpd
+++ b/bin/MakeProjectCreator/templates/gnu.mpd
@@ -577,4 +577,11 @@ ifneq ($(GENERATED_DIRTY),)
-$(RM) -r $(GENERATED_DIRTY)
endif
+<%if(postbuild)%>
+all: __postbuild__
+
+__postbuild__:
+ @<%eval(postbuild)%>
+
+<%endif%>
<%marker(bottom)%>