summaryrefslogtreecommitdiff
path: root/apt-private/makefile
blob: 1934db160197998f961d5329c7e555de9f6fffa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- make -*-
BASE=..
SUBDIR=apt-private

# Header location
HEADER_TARGETDIRS = apt-private

# Bring in the default rules
include ../buildlib/defaults.mak

# The library name
LIBRARY=apt-private
MAJOR=0.0
MINOR=0
SLIBS=$(PTHREADLIB) -lapt-pkg
CXXFLAGS += -fvisibility=hidden -fvisibility-inlines-hidden

SOURCE = $(sort $(wildcard *.cc))
HEADERS = $(addprefix apt-private/,$(sort $(wildcard *.h)))

include $(LIBRARY_H)