Skip to content

Commit

Permalink
Add a "make clean" target
Browse files Browse the repository at this point in the history
  • Loading branch information
Mange committed Nov 25, 2019
1 parent 41524de commit 9c14692
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: setup check-ruby check-jq nokogiri all dist cldr
.PHONY: setup check-ruby check-jq nokogiri all dist cldr clean
.DEFAULT: all

DATA_FILES := $(patsubst views/%.jq,data/%,$(wildcard views/*.jq)) data/all.json
Expand All @@ -8,6 +8,9 @@ INPUT_FILES := $(wildcard cldr/common/annotations/*.xml) \

all: cldr $(DATA_FILES)

clean:
rm -f $(DATA_FILES)

setup: | check-ruby nokogiri check-jq

dist: data/release.tar.bz2
Expand Down

0 comments on commit 9c14692

Please sign in to comment.