From: joy Date: Tue, 19 Sep 2000 19:35:10 +0000 (+0000) Subject: set build as the default rule, made clean a phony rule X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=6efbbc93a3bb666ca41727853ae799f7c3b3af86;p=developers-reference.git set build as the default rule, made clean a phony rule git-svn-id: svn://anonscm.debian.org/ddp/manuals/trunk/developers-reference@1008 313b444b-1b9f-4f58-a734-7bb04f332e8d --- diff --git a/Makefile b/Makefile index 43c602c..914d8fe 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,8 @@ MANUAL := $(notdir $(shell pwd)) PUBLISHDIR := ../../../public_html/manuals.html +all: build + publish: build [ -d $(PUBLISHDIR) ] || exit 1 rm -f $(PUBLISHDIR)/$(MANUAL)/*.html @@ -14,6 +16,6 @@ publish: build build: debian/rules build +.PHONY: clean clean: debian/rules clean -