mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 19:36:18 +01:00
28 lines
509 B
Makefile
28 lines
509 B
Makefile
|
|
||
|
NULL =
|
||
|
bin_SCRIPTS =
|
||
|
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
|
||
|
|
||
|
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 *~
|