win32/vs6/grammar.dsp: add autogen of gstmarshal.c,h for Release mode

Original commit message from CVS:
* win32/vs6/grammar.dsp:
add autogen of gstmarshal.c,h for Release mode
This commit is contained in:
Sébastien Moutte 2006-01-30 20:36:51 +00:00
parent 0cab8b4fbc
commit c0a0e6303e
2 changed files with 24 additions and 0 deletions

View file

@ -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),

View 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"