A script to retrieve a list of the most required skills for given vacancies from the website hh.ru. Golang version.
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.
|
APP?=hhskills |
|
ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) |
|
|
|
.PHONY: run |
|
run: |
|
go run ${APP}.go $(filter-out $@, $(MAKECMDGOALS)); : |
|
|
|
.PHONY: build |
|
build: |
|
go build ${APP}.go |
|
|
|
%: |
|
@true |
|
|
|
|