diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-02-28 00:59:50 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-16 14:53:17 +0100 |
commit | 0c6dad40a0926795cf33da5a4f557302a50a8639 (patch) | |
tree | 58f863e800facbb2eebf24a87a74596b332fcd1a /src | |
parent | 3e511f90c70f7eae68c3452998dbf28c8b1ec764 (diff) |
build: get path of `glib-mkenums' from pkg-config
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index f833711a..81a268de 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -38,14 +38,14 @@ SERIAL_ENUMS = \ mm-at-serial-port.h mm-serial-enums-types.h: Makefile.am $(SERIAL_ENUMS) $(top_srcdir)/build-aux/mm-enums-template.h - $(AM_V_GEN) glib-mkenums \ + $(AM_V_GEN) $(GLIB_MKENUMS) \ --fhead "#include \"mm-port.h\"\n#include \"mm-at-serial-port.h\"\n#ifndef __MM_SERIAL_ENUMS_TYPES_H__\n#define __MM_SERIAL_ENUMS_TYPES_H__\n" \ --template $(top_srcdir)/build-aux/mm-enums-template.h \ --ftail "#endif /* __MM_SERIAL_ENUMS_TYPES_H__ */\n" \ $(SERIAL_ENUMS) > $@ mm-serial-enums-types.c: Makefile.am $(top_srcdir)/build-aux/mm-enums-template.c mm-serial-enums-types.h - $(AM_V_GEN) glib-mkenums \ + $(AM_V_GEN) $(GLIB_MKENUMS) \ --fhead "#include \"mm-serial-enums-types.h\"" \ --template $(top_srcdir)/build-aux/mm-enums-template.c \ $(SERIAL_ENUMS) > $@ @@ -76,14 +76,14 @@ libserial_la_SOURCES = \ DAEMON_ENUMS = mm-bearer.h mm-daemon-enums-types.h: Makefile.am $(DAEMON_ENUMS) $(top_srcdir)/build-aux/mm-enums-template.h - $(AM_V_GEN) glib-mkenums \ + $(AM_V_GEN) $(GLIB_MKENUMS) \ --fhead "#include \"mm-bearer.h\"\n#ifndef __MM_DAEMON_ENUMS_TYPES_H__\n#define __MM_DAEMON_ENUMS_TYPES_H__\n" \ --template $(top_srcdir)/build-aux/mm-enums-template.h \ --ftail "#endif /* __MM_DAEMON_ENUMS_TYPES_H__ */\n" \ $(DAEMON_ENUMS) > $@ mm-daemon-enums-types.c: Makefile.am $(top_srcdir)/build-aux/mm-enums-template.c mm-daemon-enums-types.h - $(AM_V_GEN) glib-mkenums \ + $(AM_V_GEN) $(GLIB_MKENUMS) \ --fhead "#include \"mm-daemon-enums-types.h\"" \ --template $(top_srcdir)/build-aux/mm-enums-template.c \ $(DAEMON_ENUMS) > $@ |