diff options
-rw-r--r-- | administrative-codes/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/administrative-codes/Makefile b/administrative-codes/Makefile index c0008bc..e8b8f2b 100644 --- a/administrative-codes/Makefile +++ b/administrative-codes/Makefile @@ -3,6 +3,8 @@ CSV_SOURCES = counties.csv municipalities.csv GENERATED_FILES = $(addsuffix .json,$(OUT)) $(addsuffix .json.br,$(OUT)) all: $(GENERATED_FILES) +update: $(CSV_SOURCES) + $(CSV_SOURCES): %.csv: ./update @@ -16,4 +18,4 @@ $(CSV_SOURCES): %.csv: clean: rm -f -- $(GENERATED_FILES) -.PHONY: update clean +.PHONY: all update clean |