]> git.saurik.com Git - apt-legacy.git/blob - apt-inst/makefile
Drastically improved APT HTTP error messages and actually set the proxy server config...
[apt-legacy.git] / apt-inst / makefile
1 # -*- make -*-
2 BASE=..
3 SUBDIR=apt-inst
4
5 # Header location
6 SUBDIRS = contrib deb
7 HEADER_TARGETDIRS = apt-pkg
8
9 # Bring in the default rules
10 include ../buildlib/defaults.mak
11
12 # The library name
13 LIBRARY=apt-inst
14 LIBEXT=
15 #$(GLIBC_VER)$(LIBSTDCPP_VER)
16 MAJOR=1.1
17 MINOR=0
18 SLIBS=$(PTHREADLIB) -lapt-pkg
19 APT_DOMAIN:=libapt-inst$(MAJOR)
20
21 # Source code for the contributed non-core things
22 SOURCE = contrib/extracttar.cc contrib/arfile.cc
23
24 # Source code for the main library
25 SOURCE+= filelist.cc database.cc dirstream.cc extract.cc \
26 deb/dpkgdb.cc deb/debfile.cc
27
28 # Public header files
29 HEADERS = extracttar.h arfile.h filelist.h database.h extract.h \
30 dpkgdb.h dirstream.h debfile.h
31
32 HEADERS := $(addprefix apt-pkg/,$(HEADERS))
33 include $(LIBRARY_H)