]> git.saurik.com Git - apt.git/blame - apt-inst/makefile
Two small bug fixes
[apt.git] / apt-inst / makefile
CommitLineData
b2e465d6
AL
1# -*- make -*-
2BASE=..
3SUBDIR=apt-inst
4
5# Header location
6SUBDIRS = contrib deb
7HEADER_TARGETDIRS = apt-pkg
8
9# Bring in the default rules
10include ../buildlib/defaults.mak
11
12# The library name
13LIBRARY=apt-inst
14MAJOR=1.0
15MINOR=0
16SLIBS=$(PTHREADLIB)
17
18# Source code for the contributed non-core things
19SOURCE = contrib/extracttar.cc contrib/arfile.cc
20
21# Source code for the main library
22SOURCE+= filelist.cc database.cc dirstream.cc extract.cc \
23 deb/dpkgdb.cc deb/debfile.cc
24
25# Public header files
26HEADERS = extracttar.h arfile.h filelist.h database.h extract.h \
27 dpkgdb.h dirstream.h debfile.h
28
29HEADERS := $(addprefix apt-pkg/,$(HEADERS))
30include $(LIBRARY_H)