add a dependency so it triggers a marshal code rebuild
authorThomas Vander Stichele <thomas@apestaart.org>
Sat, 8 May 2004 12:06:22 +0000 (12:06 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Sat, 8 May 2004 12:06:22 +0000 (12:06 +0000)
Original commit message from CVS:
add a dependency so it triggers a marshal code rebuild

gst/Makefile.am

index 38aa3cd..7b7cc1b 100644 (file)
@@ -223,14 +223,14 @@ endif
 
 
 gstmarshal.h: gstmarshal.list
-       glib-genmarshal --header --prefix=gst_marshal $^ > gstmarshal.h.tmp
+       glib-genmarshal --header --prefix=gst_marshal gstmarshal.list > gstmarshal.h.tmp
        mv gstmarshal.h.tmp gstmarshal.h
 
-gstmarshal.c: gstmarshal.list
+gstmarshal.c: gstmarshal.list gst_private.h
        echo "#include \"gst_private.h\"" > gstmarshal.c.tmp
        echo "#include \"glib-object.h\"" >> gstmarshal.c.tmp
        echo "#include \"gstmarshal.h\"" >> gstmarshal.c.tmp
-       glib-genmarshal --body --prefix=gst_marshal $^ >> gstmarshal.c.tmp
+       glib-genmarshal --body --prefix=gst_marshal gstmarshal.list >> gstmarshal.c.tmp
        mv gstmarshal.c.tmp gstmarshal.c
 
 gstenumtypes.h: $(gst_headers)