xbps-bin(8): split individual checks from check.c into its own files.

This is in preparation for new upcoming checks.
This commit is contained in:
Juan RP
2011-10-27 17:08:48 +02:00
parent 2ff2d1f68a
commit f87b40eb76
7 changed files with 502 additions and 262 deletions

View File

@@ -2,9 +2,11 @@ TOPDIR = ../..
-include $(TOPDIR)/config.mk
BIN = xbps-bin
OBJS = check.o install.o main.o remove.o show-deps.o
OBJS = install.o main.o remove.o show-deps.o
OBJS += show-info-files.o util.o find-files.o
OBJS += question.o fetch_cb.o trans_cb.o
OBJS += check.o check_pkg_automatic.o check_pkg_files.o
OBJS += check_pkg_rundeps.o check_pkg_symlinks.o
MAN = $(BIN).8
include $(TOPDIR)/prog.mk