win32/vs6/grammar.dsp: add autogen of gstmarshal.c,h for Release mode
authorSébastien Moutte <sebastien@moutte.net>
Mon, 30 Jan 2006 20:36:51 +0000 (20:36 +0000)
committerSébastien Moutte <sebastien@moutte.net>
Mon, 30 Jan 2006 20:36:51 +0000 (20:36 +0000)
Original commit message from CVS:
* win32/vs6/grammar.dsp:
add autogen of gstmarshal.c,h for Release mode

ChangeLog
win32/vs6/grammar.dsp

index 6487b08..ba4507c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
+       
+       * win32/vs6/grammar.dsp:
+               add autogen of gstmarshal.c,h for Release mode
+               
 2006-01-30  Wim Taymans  <wim@fluendo.com>
 
        * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
index a290130..b6c8e9f 100644 (file)
@@ -182,6 +182,25 @@ BuildCmds= \
 SOURCE=..\..\gst\gstmarshal.list
 
 !IF  "$(CFG)" == "grammar - Win32 Release"
+# Begin Custom Build
+InputPath=..\..\gst\gstmarshal.list
+
+BuildCmds= \
+       echo #include "glib-object.h" > gstmarshal.c.tmp \
+       echo #include "gstmarshal.h" >> gstmarshal.c.tmp \
+       glib-genmarshal --body --prefix=gst_marshal ..\..\gst\gstmarshal.list >> gstmarshal.c.tmp \
+       move gstmarshal.c.tmp ..\..\gst\gstmarshal.c \
+       echo #include "gst/gstconfig.h" > gstmarshal.h.tmp \
+       glib-genmarshal --header --prefix=gst_marshal ..\..\gst\gstmarshal.list >> gstmarshal.h.tmp \
+       move gstmarshal.h.tmp ..\..\gst\gstmarshal.h \
+       
+
+"..\..\gst\gstmarshal.c" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+
+"..\..\gst\gstmarshal.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
+   $(BuildCmds)
+# End Custom Build
 
 !ELSEIF  "$(CFG)" == "grammar - Win32 Debug"