dhcpcd/Makefile

94 lines
2.1 KiB
Makefile
Raw Normal View History

2017-03-16 17:54:30 +08:00
SUBDIRS= src hooks
VERSION!= sed -n 's/\#define VERSION[[:space:]]*"\(.*\)".*/\1/p' src/defs.h
2017-03-16 18:01:12 +08:00
DIST!= if test -f .fslckout; then echo "dist-fossil"; \
elif test -d .git; then echo "dist-git"; \
else echo "dist-inst"; fi
FOSSILID?= current
2017-03-16 18:01:12 +08:00
GITREF?= HEAD
2017-03-16 18:01:12 +08:00
DISTPREFIX?= dhcpcd-${VERSION}
DISTFILEGZ?= ${DISTPREFIX}.tar.gz
DISTFILE?= ${DISTPREFIX}.tar.xz
DISTINFO= ${DISTFILE}.distinfo
DISTINFOSIGN= ${DISTINFO}.asc
CLEANFILES+= *.tar.xz
.PHONY: hooks import import-bsd tests
.SUFFIXES: .in
all: config.h
for x in ${SUBDIRS}; do cd $$x; ${MAKE} $@; cd ..; done
depend: config.h
for x in ${SUBDIRS}; do cd $$x; ${MAKE} $@; cd ..; done
tests:
cd $@; ${MAKE} $@
test: tests
hooks:
2017-03-16 17:54:30 +08:00
cd $@; ${MAKE}
2015-12-23 07:46:17 +08:00
eginstall:
for x in ${SUBDIRS}; do cd $$x; ${MAKE} $@; cd ..; done
install:
for x in ${SUBDIRS}; do cd $$x; ${MAKE} $@; cd ..; done
2017-03-31 17:48:42 +08:00
proginstall:
for x in ${SUBDIRS}; do cd $$x; ${MAKE} $@; cd ..; done
clean:
2017-04-14 17:34:18 +08:00
rm -rf cov-int dhcpcd.xz
for x in ${SUBDIRS} tests; do cd $$x; ${MAKE} $@; cd ..; done
2010-06-10 05:16:04 +08:00
distclean: clean
rm -f config.h config.mk config.log \
${DISTFILE} ${DISTFILEGZ} ${DISTINFO} ${DISTINFOSIGN}
2010-06-10 05:16:04 +08:00
2017-03-16 18:01:12 +08:00
dist-fossil:
fossil tarball --name ${DISTPREFIX} ${FOSSILID} ${DISTFILEGZ}
gunzip -c ${DISTFILEGZ} | xz >${DISTFILE}
rm ${DISTFILEGZ}
2017-03-16 18:01:12 +08:00
dist-git:
git archive --prefix=${DISTPREFIX}/ ${GITREF} | xz >${DISTFILE}
dist-inst:
mkdir /tmp/${DISTPREFIX}
cp -RPp * /tmp/${DISTPREFIX}
(cd /tmp/${DISTPREFIX}; make clean)
tar -cvjpf ${DISTFILE} -C /tmp ${DISTPREFIX}
rm -rf /tmp/${DISTPREFIX}
dist: ${DIST}
distinfo: dist
rm -f ${DISTINFO} ${DISTINFOSIGN}
${CKSUM} ${DISTFILE} >${DISTINFO}
#printf "SIZE (${DISTFILE}) = %s\n" $$(wc -c <${DISTFILE}) >>${DISTINFO}
${PGP} --clearsign --output=${DISTINFOSIGN} ${DISTINFO}
chmod 644 ${DISTINFOSIGN}
ls -l ${DISTFILE} ${DISTINFO} ${DISTINFOSIGN}
2015-02-23 20:16:17 +08:00
snapshot:
rm -rf /tmp/${DISTPREFIX}
${INSTALL} -d /tmp/${DISTPREFIX}
cp -RPp * /tmp/${DISTPREFIX}
2016-02-15 22:23:51 +08:00
${MAKE} -C /tmp/${DISTPREFIX} distclean
tar cf - -C /tmp ${DISTPREFIX} | xz >${DISTFILE}
2015-02-23 20:16:17 +08:00
ls -l ${DISTFILE}
import: dist
rm -rf /tmp/${DISTPREFIX}
${INSTALL} -d /tmp/${DISTPREFIX}
tar xvJpf ${DISTFILE} -C /tmp
include Makefile.inc