diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-07-03 15:58:43 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-07-03 16:08:59 +0200 |
commit | cb6985816bdafc40fee6d57c6320e18906990ba7 (patch) | |
tree | 87be9a395a77365a516afa0f4d4015cdf3e8e37b /cli | |
parent | 4b8910554d91768db711c9f05ad992b8a70c590e (diff) | |
download | external_libqmi-cb6985816bdafc40fee6d57c6320e18906990ba7.zip external_libqmi-cb6985816bdafc40fee6d57c6320e18906990ba7.tar.gz external_libqmi-cb6985816bdafc40fee6d57c6320e18906990ba7.tar.bz2 |
build: prepare sources to treat `libqmi-glib' not as the only library
Instead of keeping the libqmi-glib sources under `src', we'll have a more
specific `libqmi-glib' directory instead.
Also, update autotools to reflect as `libqmi' the name of the project.
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/Makefile.am b/cli/Makefile.am index b46fc3d..65fd0db 100644 --- a/cli/Makefile.am +++ b/cli/Makefile.am @@ -3,8 +3,8 @@ bin_PROGRAMS = qmicli qmicli_CPPFLAGS = \ $(QMICLI_CFLAGS) \ -I$(top_srcdir) \ - -I$(top_srcdir)/src \ - -I$(top_builddir)/src + -I$(top_srcdir)/libqmi-glib \ + -I$(top_builddir)/libqmi-glib qmicli_SOURCES = \ qmicli.c \ @@ -14,4 +14,4 @@ qmicli_SOURCES = \ qmicli_LDADD = \ $(QMICLI_LIBS) \ - $(top_builddir)/src/libqmi-glib.la + $(top_builddir)/libqmi-glib/libqmi-glib.la |