CS3700-project4/Makefile

22 lines
345 B
Makefile
Raw Normal View History

2020-04-10 23:07:45 +00:00
.PHONY: all test run
2020-04-10 20:31:41 +00:00
all: .setup
raco setup smol-http
2020-04-10 20:31:41 +00:00
raco make webcrawler
test: .setup
raco test -p smol-http
2020-04-10 23:07:45 +00:00
run: all
ifndef FB_USERNAME
$(error "Provide FB_USERNAME variable")
endif
ifndef FB_PASSWORD
$(error "Provide FB_PASSWORD variable")
endif
./webcrawler $(USERNAME) $(PASSWORD)
2020-04-10 20:31:41 +00:00
.setup:
raco pkg install smol-http/
2020-04-10 20:31:41 +00:00
@touch $@