blob: 3550b7de3ca626f51c5dbdb243969602fbed2eb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
SUBDIRS = libbb libopkg tests src
HOST_CPU=@host_cpu@
BUILD_CPU=@build_cpu@
OPKGLIBDIR=@opkglibdir@
ALL_CFLAGS=-g -O -Wall -DHOST_CPU_STR=\"@host_cpu@\" -DBUILD_CPU=@build_cpu@ -DLIBDIR=\"@libdir@\" -DOPKGLIBDIR=\"@opkglibdir@\" -DDATADIR=\"@datadir@\"
bin_SCRIPTS = update-alternatives
interceptdir = $(datadir)/opkg/intercept
intercept_DATA = intercept/ldconfig intercept/depmod intercept/update-modules
install-data-hook:
chmod +x $(DESTDIR)$(datadir)/opkg/intercept/*
EXTRA_DIST = update-alternatives $(intercept_DATA)
MAINTAINERCLEANFILES= \
configure \
Makefile.in \
config.guess \
config.sub \
ltmain.sh \
.Makefile.am.swp \
aclocal.m4
package: all-recursive
STRIPPROG=$(STRIP) INSTALL=$$PWD/install-sh binary-arch
|