CS3700-project4/Makefile

13 lines
161 B
Makefile
Raw Normal View History

2020-04-10 22:54:53 +00:00
.PHONY: all test
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 20:31:41 +00:00
.setup:
raco pkg install smol-http/
2020-04-10 20:31:41 +00:00
@touch $@