chiark / gitweb /
set build as the default rule, made clean a phony rule
authorjoy <joy@313b444b-1b9f-4f58-a734-7bb04f332e8d>
Tue, 19 Sep 2000 19:35:10 +0000 (19:35 +0000)
committerjoy <joy@313b444b-1b9f-4f58-a734-7bb04f332e8d>
Tue, 19 Sep 2000 19:35:10 +0000 (19:35 +0000)
git-svn-id: svn://anonscm.debian.org/ddp/manuals/trunk/developers-reference@1008 313b444b-1b9f-4f58-a734-7bb04f332e8d

Makefile

index 43c602c5f35febc27064ff400feb44195fddd43e..914d8fe1890f004b94da1e4df0610b540bc1ede8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,8 @@
 MANUAL         := $(notdir $(shell pwd))
 PUBLISHDIR     := ../../../public_html/manuals.html
 
 MANUAL         := $(notdir $(shell pwd))
 PUBLISHDIR     := ../../../public_html/manuals.html
 
+all: build
+
 publish:       build
        [ -d $(PUBLISHDIR) ] || exit 1
        rm -f $(PUBLISHDIR)/$(MANUAL)/*.html
 publish:       build
        [ -d $(PUBLISHDIR) ] || exit 1
        rm -f $(PUBLISHDIR)/$(MANUAL)/*.html
@@ -14,6 +16,6 @@ publish:      build
 build:
        debian/rules build
 
 build:
        debian/rules build
 
+.PHONY: clean
 clean:
        debian/rules clean
 clean:
        debian/rules clean
-