Files
opkg-utils/Makefile
Holger 'Zecke' Freyther 234524f33d [opkg-utils] Add opkg-utils to the repository courtsey Richard Purdie of o-hand.com
I've attached a first attempt at this, its basically a small set of
    helper scripts which OE/Poky use when working with ipks. I've applied
    the various OE improvements and tweaks and removed a ton of cruft we
    don't need.
2008-07-18 11:29:53 +00:00

20 lines
570 B
Makefile

UTILS = opkg-build opkg-unbuild opkg-compare-versions opkg-make-index opkg.py \
opkg-list-fields arfile.py opkg-buildpackage opkg-diff opkg-extract-file opkg-show-deps \
opkg-compare-indexes opkg-compare-versions.sh
DESTDIR=
PREFIX=/usr/local
bindir=${prefix}/bin
all: opkg-compare-versions
opkg-compare-versions: opkg-compare-versions.c
$(CC) $(CFLAGS) -o opkg-compare-versions opkg-compare-versions.c
install: opkg-compare-versions
install -d $(DESTDIR)$(bindir)
install -m 744 $(UTILS) $(DESTDIR)$(bindir)
clean:
rm -rf opkg-compare-versions