From 5e1419c0b5cf717e57959bc27eeab1cfa4bea5dc Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 25 Apr 2007 02:21:12 -0400 Subject: Merge single-function header files on pacman side Having a seperate header file for add, remove, query, etc. seemed overkill. Merge them all into a common pacman.h and fix the necessary #includes. Signed-off-by: Dan McGee --- src/pacman/Makefile.am | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/pacman/Makefile.am') diff --git a/src/pacman/Makefile.am b/src/pacman/Makefile.am index 82ec4d6b..91912991 100644 --- a/src/pacman/Makefile.am +++ b/src/pacman/Makefile.am @@ -13,18 +13,18 @@ INCLUDES = -I$(top_srcdir)/lib/libalpm AM_CFLAGS = -D_GNU_SOURCE pacman_SOURCES = \ - add.h add.c \ + add.c \ conf.h conf.c \ - deptest.h deptest.c \ + deptest.c \ downloadprog.h downloadprog.c \ log.h log.c \ package.h package.c \ - pacman.c \ - query.h query.c \ - remove.h remove.c \ - sync.h sync.c \ + pacman.h pacman.c \ + query.c \ + remove.c \ + sync.c \ trans.h trans.c \ - upgrade.h upgrade.c \ + upgrade.c \ util.h util.c pacman_LDADD = $(top_builddir)/lib/libalpm/.libs/libalpm.la \ -- cgit v1.2.3-24-g4f1b