diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-02-03 20:20:07 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-02-03 20:20:07 +0000 |
commit | 28760b093e73a78cdd0c1fba76baa5d87dc2c0f2 (patch) | |
tree | 8b4f25942bc86db149e1457b82fcb6f491eb3b69 | |
parent | 0f9fe900b0757fd2450454a1af24146b47aaaac2 (diff) |
remove glib_root add hack rule for .Plo files
Original commit message from CVS:
remove glib_root
add hack rule for .Plo files
-rw-r--r-- | glib-gen.mak | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/glib-gen.mak b/glib-gen.mak index 8394920..1de0cd5 100644 --- a/glib-gen.mak +++ b/glib-gen.mak @@ -4,7 +4,6 @@ #glib_enum_headers=$(colorbalance_headers) #glib_enum_define=GST_COLOR_BALANCE #glib_enum_prefix=gst_color_balance -#glib_root=colorbalance # these are all the rules generating the relevant files %-marshal.h: %-marshal.list @@ -33,3 +32,11 @@ --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \ --vtail " { 0, NULL, NULL }\n };\n etype = g_@type@_register_static (\"@EnumName@\", values);\n }\n return etype;\n}\n" \ $^ > $@ + +# a hack rule to make sure .Plo files exist because they get include'd +# from Makefile's +.deps/%-marshal.Plo: + touch $@ + +.deps/%-enumtypes.Plo: + touch $@ |