Adding clean to the makefile

FossilOrigin-Name: 88ff5b93f5fcdaac3e189c872828982db9d940a172410e78c9ce051c7de14f01
This commit is contained in:
mat.kovach@everops.com 2023-04-05 15:32:59 +00:00
parent a347ea4844
commit 83db18c5ec
1 changed files with 6 additions and 1 deletions

View File

@ -4,10 +4,15 @@ DOCKERFILES=ubi9+epel.dockerfile
.SUFFIXES: .md .dockerfile
.md.dockerfile:
$(TANGLE) -R $@ $< > $@
@$(TANGLE) -R $@ $< > $@
.PHONY: default
default: all
.PHONY: all
all: $(DOCKERFILES)
.PHONY: clean
clean:
@rm -f *~
@rm -rf $(DOCKERFILES)