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-stampbuild-stamp:@echo "In" $@touch build-stampbuild-arch: configure make-arch build-arch-stampbuild-arch-stamp:@echo "In" $@touch build-arch-stampconfigure: configure-stampconfigure-stamp:@echo "In" $@touch configure-stampmake-arch: configure make-arch-stampmake-arch-stamp:@echo "In" $@touch make-arch-stampmake: configure make-arch make-stampmake-stamp:@echo "In" $@touch make-stampcheck: configure make-arch check-stampcheck-stamp:@echo "In" $@touch check-stampclean:rm -vf build-stamp configure-stamp make-stamp make-arch-stamp \install-stamp install-arch-stamp check-stamp build-arch-stampinstall-arch: make-arch check install-arch-stampinstall-arch-stamp:@echo "In" $@touch install-arch-stampinstall: make-arch make install-arch install-stampinstall-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