Created
March 30, 2016 18:51
-
-
Save jbn/b1bbde339936c67d46d84256f40e8ba2 to your computer and use it in GitHub Desktop.
Fetch and Save First, Makefile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Makefile | |
FETCH = data/raw/FETCHED | |
PROCESS = data/clean/CLEANED | |
all: $(FETCH) $(PROCESS) | |
$(FETCH): scripts/fetch.py | |
@mkdir -p data/raw | |
python scripts/fetch.py | |
@touch $(FETCH) | |
$(PROCESS): $(FETCH) scripts/process.py | |
@mkdir -p data/clean | |
python scripts/process.py | |
@touch $(PROCESS) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment