diff options
| -rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -8,8 +8,11 @@ REPODATA = repo/db repo/dists repo/pool REPOHOST = www.cefala.org USER = rlaboiss +build-stamp: $(BUILD) + touch build-stamp + .PHONY: install -install: $(BUILD) +install: build-stamp mkdir -p $(WWWDIR) chown -R '$(USER):$(USER)' $(WWWDIR) install --mode=644 www/$(INDEX) www/$(GPGKEY) $(WWWDIR) @@ -22,7 +25,7 @@ install: $(BUILD) .PHONY: clean clean: - rm -f $(BUILD) + rm -f $(BUILD) build-stamp .PHONY: install-repo install-repo: |
