From dd34e92bf45277822ce96a234a464a5a15cfb885 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Mon, 2 Oct 2006 10:38:38 +0000 Subject: [PATCH] Added source run.c, .PHONY fix for install rule --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 697499d..40e9b4a 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ PACKAGE = Accessories VERSION = 0.0.0 SUBDIRS = src +RM = rm -f LN = ln -sf TAR = tar -czvf @@ -17,11 +18,12 @@ distclean: @for i in $(SUBDIRS); do (cd $$i && $(MAKE) distclean) || exit; done dist: - $(RM) $(PACKAGE)-$(VERSION) + $(RM) -r $(PACKAGE)-$(VERSION) $(LN) . $(PACKAGE)-$(VERSION) @$(TAR) $(PACKAGE)-$(VERSION).tar.gz \ $(PACKAGE)-$(VERSION)/src/calendar.c \ $(PACKAGE)-$(VERSION)/src/fontsel.c \ + $(PACKAGE)-$(VERSION)/src/run.c \ $(PACKAGE)-$(VERSION)/src/project.conf \ $(PACKAGE)-$(VERSION)/project.conf $(RM) $(PACKAGE)-$(VERSION) @@ -32,4 +34,4 @@ install: all uninstall: @for i in $(SUBDIRS); do (cd $$i && $(MAKE) uninstall) || exit; done -.PHONY: all subdirs clean distclean install uninstall +.PHONY: all subdirs clean distclean dist install uninstall