From aa6bbf2ef49d86faffc9c90fb80cf140434fbdb4 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Fri, 5 Apr 2019 12:36:47 +0200 Subject: [PATCH] Move pkg-tool internal headers out of global include directory Signed-off-by: David Oberhollenzer --- main/Makemodule.am | 3 ++- {include => main}/command.h | 0 {include => main}/depgraph.h | 0 3 files changed, 2 insertions(+), 1 deletion(-) rename {include => main}/command.h (100%) rename {include => main}/depgraph.h (100%) diff --git a/main/Makemodule.am b/main/Makemodule.am index 7b35767..443f698 100644 --- a/main/Makemodule.am +++ b/main/Makemodule.am @@ -1,8 +1,9 @@ -pkg_SOURCES = include/command.h include/depgraph.h +pkg_SOURCES = main/command.h main/depgraph.h pkg_SOURCES += main/pkg.c main/command.c pkg_SOURCES += main/depgraph/collect.c main/depgraph/pkglist.c pkg_SOURCES += main/depgraph/tsort.c +pkg_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/main pkg_CFLAGS = $(AM_CFLAGS) pkg_LDADD = libpkg.a libutil.a libfilelist.a libcomp.a diff --git a/include/command.h b/main/command.h similarity index 100% rename from include/command.h rename to main/command.h diff --git a/include/depgraph.h b/main/depgraph.h similarity index 100% rename from include/depgraph.h rename to main/depgraph.h