aboutsummaryrefslogtreecommitdiffstats
path: root/marshal.mk
diff options
context:
space:
mode:
Diffstat (limited to 'marshal.mk')
-rw-r--r--marshal.mk7
1 files changed, 0 insertions, 7 deletions
diff --git a/marshal.mk b/marshal.mk
deleted file mode 100644
index 5da83b80ec..0000000000
--- a/marshal.mk
+++ /dev/null
@@ -1,7 +0,0 @@
-%.h: %.list
- ( $(GLIB_GENMARSHAL) --prefix=$(subst -,_,$*) $< --header > $@.tmp \
- && mv $@.tmp $@ ) || ( rm -f $@.tmp && exit 1 )
-
-%.c: %.list %.h
- ( (echo "#include \"$*.h\""; $(GLIB_GENMARSHAL) --prefix=$(subst -,_,$*) $(srcdir)/$*.list --body) > $@.tmp \
- && mv $@.tmp $@ ) || ( rm -f $@.tmp && exit 1 )