1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-api-healthcheck synced 2026-06-18 05:00:03 +02:00

Makefile: remove deps.

This commit is contained in:
Henrik Hautakoski 2022-08-12 16:33:51 +02:00
parent 64f6e25b21
commit ed91320a1d
No known key found for this signature in database
GPG key ID: 608414D93E862CCD

View file

@ -6,10 +6,6 @@ PREFIX = /usr/local
PROGRAM_NAME=eosio-api-healthcheck
SOURCES=src/main.go src/server.go
DEPENDANCIES= github.com/firstrow/tcp_server \
github.com/liamylian/jsontime/v2 \
github.com/imroc/req \
github.com/pborman/getopt/v2
.PHONY: all build/$(PROGRAM_NAME) clean
all: build
@ -19,9 +15,6 @@ build/$(PROGRAM_NAME) : $(SOURCES)
$(GO) build -o $@ $(GOCCFLAGS) $(GOLDFLAGS) $^
$(GO) env > build/.buildinfo
deps:
$(GO) get $(DEPENDANCIES)
info-file :
echo PACKAGE_NAME=\"$(PROGRAM_NAME)\" "\n"\
PACKAGE_DESCRIPTION=\"HAproxy healthcheck program for EOSIO API.\" "\n"\