Surf the web for data recursively
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
SRCDIR:=src |
|
EXE:=websurf |
|
TESTDIR:=testing |
|
|
|
all: |
|
cd $(SRCDIR) && go build && mv $(EXE) .. |
|
|
|
test: all |
|
rm -rf $(TESTDIR) && \ |
|
mkdir -p $(TESTDIR) && \ |
|
cp $(EXE) $(TESTDIR) && \ |
|
cp conf.json $(TESTDIR) |
|
|
|
clean: |
|
rm -rf $(TESTDIR) $(EXE)
|