summaryrefslogtreecommitdiff
path: root/marshal.mk
blob: 5aa50f8f4dd8a10e9933b0aa0a7528b86c1531ac (plain)
1
2
3
4
5
6
7
%.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 -,_,$*) $< --body) > $@.tmp \
	&& mv $@.tmp $@ ) || ( rm -f $@.tmp && exit 1 )