]>
Commit | Line | Data |
---|---|---|
b2e465d6 AL |
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 | |
a5b7cd82 | 14 | LIBEXT=$(GLIBC_VER)$(LIBSTDCPP_VER) |
b2e465d6 AL |
15 | MAJOR=1.0 |
16 | MINOR=0 | |
87b192a0 | 17 | SLIBS=$(PTHREADLIB) -lapt-pkg |
b2e465d6 AL |
18 | |
19 | # Source code for the contributed non-core things | |
20 | SOURCE = contrib/extracttar.cc contrib/arfile.cc | |
21 | ||
22 | # Source code for the main library | |
23 | SOURCE+= filelist.cc database.cc dirstream.cc extract.cc \ | |
24 | deb/dpkgdb.cc deb/debfile.cc | |
25 | ||
26 | # Public header files | |
27 | HEADERS = extracttar.h arfile.h filelist.h database.h extract.h \ | |
28 | dpkgdb.h dirstream.h debfile.h | |
29 | ||
30 | HEADERS := $(addprefix apt-pkg/,$(HEADERS)) | |
31 | include $(LIBRARY_H) |