move iprogress.{cc,h} to private-progress.{cc,h} until its fully stable
[ntk/apt.git] / apt-private / makefile
CommitLineData
b9179170
MV
1# -*- make -*-
2BASE=..
3SUBDIR=apt-private
4
5# Header location
6HEADER_TARGETDIRS = apt-private
7
8# Bring in the default rules
9include ../buildlib/defaults.mak
10
11# The library name and version (indirectly used from init.h)
12include ../buildlib/libversion.mak
13
14# The library name
15LIBRARY=apt-private
16MAJOR=0.0
17MINOR=0
18SLIBS=$(PTHREADLIB) -lapt-pkg
19
1c6cedc4 20PRIVATES=list install download output cachefile cacheset update upgrade cmndline moo search show main progress
b9179170
MV
21SOURCE += $(foreach private, $(PRIVATES), private-$(private).cc)
22HEADERS += $(foreach private, $(PRIVATES), private-$(private).h)
23
24SOURCE+= acqprogress.cc
25HEADERS+= acqprogress.h private-cacheset.h
26
27HEADERS := $(addprefix apt-private/,$(HEADERS))
28include $(LIBRARY_H)