mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-28 00:16:15 +01:00
97cd6fa2e3
Avoids failure if they contain spaces. Commit message written by Colin Walters <walters@verbum.org> https://bugzilla.gnome.org/show_bug.cgi?id=649775
29 lines
553 B
Makefile
29 lines
553 B
Makefile
|
|
NULL =
|
|
bin_SCRIPTS =
|
|
CLEANFILES =
|
|
EXTRA_DIST =
|
|
|
|
codegendir = $(libdir)/gdbus-codegen
|
|
codegen_PYTHON = \
|
|
__init__.py \
|
|
codegen.py \
|
|
codegen_main.py \
|
|
codegen_docbook.py \
|
|
config.py \
|
|
dbustypes.py \
|
|
parser.py \
|
|
utils.py \
|
|
$(NULL)
|
|
|
|
bin_SCRIPTS += gdbus-codegen
|
|
CLEANFILES += gdbus-codegen
|
|
EXTRA_DIST += gdbus-codegen.in
|
|
|
|
gdbus-codegen: gdbus-codegen.in Makefile
|
|
$(AM_V_GEN) sed -e 's,@libdir\@,$(libdir),' -e 's,@PYTHON\@,$(PYTHON),' $< > $@.tmp && mv $@.tmp $@
|
|
@chmod a+x $@
|
|
|
|
clean-local:
|
|
rm -f *~
|