diff options
author | Dan Winship <danw@gnome.org> | 2013-06-13 09:34:09 -0300 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2013-06-13 10:24:01 -0300 |
commit | c89acbdc8f80455023a924ab6fae1acf12434a13 (patch) | |
tree | 5f08f13617f6ccb221543b7a165459c7cf544abc /Makefile.am | |
parent | a91eafdf95bcbcc1bd2ba5aa991ac6a8f0d14446 (diff) | |
download | NetworkManager-c89acbdc8f80455023a924ab6fae1acf12434a13.tar.gz |
build: don't install libndp
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 3fcc135845..be6c49a32e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,7 +6,6 @@ SUBDIRS = \ libnm-util \ libnm-glib \ introspection \ - libndp \ src \ callouts \ cli \ @@ -20,6 +19,8 @@ SUBDIRS = \ examples \ vapi +DIST_SUBDIRS = $(SUBDIRS) libndp + @GNOME_CODE_COVERAGE_RULES@ EXTRA_DIST = \ @@ -52,7 +53,6 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} CLEANFILES = cscope.in.out cscope.out cscope.po.out -.PHONY: cscope cscope: cscope -b -q -R -Iinclude -ssrc -slibnm-glib -slibnm-util -scli/src; @@ -61,3 +61,12 @@ libgsystem_cflags := $(GLIB_CFLAGS) -I$(srcdir)/libgsystem libgsystem_libs = $(GLIB_LIBS) include libgsystem/Makefile-libgsystem.am noinst_LTLIBRARIES = libgsystem.la + +noinst_DATA = libndp +libndp: + (cd libndp && $(MAKE)) + +clean-local: + (cd libndp && $(MAKE) clean) + +.PHONY: cscope libndp |