CS3700-project4/Makefile

22 lines
350 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:23:14 +00:00
run:
2020-04-10 23:07:45 +00:00
ifndef FB_USERNAME
$(error "Provide FB_USERNAME variable")
endif
ifndef FB_PASSWORD
$(error "Provide FB_PASSWORD variable")
endif
2020-04-11 00:13:04 +00:00
./webcrawler -d $(FB_USERNAME) $(FB_PASSWORD)
2020-04-10 23:07:45 +00:00
2020-04-10 20:31:41 +00:00
.setup:
raco pkg install smol-http/
2020-04-10 20:31:41 +00:00
@touch $@