The R Project SVN R

Rev

Rev 16947 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

#!/usr/bin/make -f
# debian/rules file for the Debian GNU/Linux r-base package
# Copyright 1997-2001 by Douglas Bates <bates@stat.wisc.edu>, <edd@debian.org>
# Copyright 2001      by Dirk Eddelbuettel <edd@debian.org>

# $Id: logic,v 1.1 2001/11/28 19:44:31 bates Exp $


build: configure make-arch build-arch build-stamp
build-stamp: 
    @echo "In" $@
    touch build-stamp

build-arch: configure make-arch build-arch-stamp
build-arch-stamp:
    @echo "In" $@
    touch build-arch-stamp

configure: configure-stamp
configure-stamp:    
    @echo "In" $@
    touch configure-stamp

make-arch: configure make-arch-stamp 
make-arch-stamp: 
    @echo "In" $@
    touch make-arch-stamp

make: configure make-arch make-stamp
make-stamp: 
    @echo "In" $@
    touch make-stamp

check: configure make-arch check-stamp
check-stamp: 
    @echo "In" $@
    touch check-stamp

clean:
    rm -vf build-stamp configure-stamp make-stamp make-arch-stamp \
        install-stamp install-arch-stamp check-stamp build-arch-stamp

install-arch: make-arch check install-arch-stamp
install-arch-stamp: 
    @echo "In" $@
    touch install-arch-stamp

install: make-arch make install-arch install-stamp
install-stamp: 
    @echo "In" $@
    touch install-stamp

# Build architecture-independent files here.
binary-indep: build install
    @echo "In" $@

# Build architecture-dependent files here.
binary-arch: build-arch install-arch check
    @echo "In" $@

binary: binary-arch binary-indep 
.PHONY: build clean binary-indep binary-arch binary install