blob: d3c1012d9cf9d6b79e00fb92f048802325fca001 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# -*- make -*-
BASE=..
SUBDIR=cmdline
# Bring in the default rules
include ../buildlib/defaults.mak
# The apt-cache program
PROGRAM=apt-cache
SLIBS = -lapt-pkg
SOURCE = apt-cache.cc
include $(PROGRAM_H)
# The apt-config program
PROGRAM=apt-get
SLIBS = -lapt-pkg
SOURCE = apt-get.cc acqprogress.cc
include $(PROGRAM_H)
|