diff options
author | Rob Austein <sra@hactrn.net> | 2006-10-20 18:32:59 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-10-20 18:32:59 +0000 |
commit | 50c0e9c8d9a74f83f815ab710c0b6a1643291ffc (patch) | |
tree | 88fc05dbc182db71c5e69abaa11c296f45f9b2b7 /rcynic | |
parent | 4e5b6d429e07d1d7f449b12571dc6b632caa6c33 (diff) |
svn:ignore
svn path=/rcynic/static-rsync/Makefile; revision=420
Diffstat (limited to 'rcynic')
-rw-r--r-- | rcynic/static-rsync/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/rcynic/static-rsync/Makefile b/rcynic/static-rsync/Makefile index 71e85a29..fa7657a9 100644 --- a/rcynic/static-rsync/Makefile +++ b/rcynic/static-rsync/Makefile @@ -8,23 +8,27 @@ CFG_ARG = TARBALL = rsync-${VERSION}.tar.gz DIRNAME = rsync-${VERSION} +CFG_LOG = > ../config.log 2>&1 +BIN_LOG = > ../build.log 2>&1 + BIN = rsync all: ${BIN} ${BIN}: ${DIRNAME}/${BIN} ln ${DIRNAME}/${BIN} $@ + file $@ ${DIRNAME}/${BIN}: configured.stamp - cd ${DIRNAME} && ${MAKE} + cd ${DIRNAME} && ${MAKE} ${BIN_LOG} extracted.stamp: ${TARBALL} gzcat ${TARBALL} | tar -xf - touch $@ configured.stamp: extracted.stamp - cd ${DIRNAME} && ${CFG_ENV} ./configure ${CFG_ARG} + cd ${DIRNAME} && ${CFG_ENV} ./configure ${CFG_ARG} ${CFG_LOG} touch $@ clean: - rm -rf ${BIN} ${DIRNAME} *.stamp + rm -rf ${BIN} ${DIRNAME} *.stamp *.log |