10 Star 42 Fork 15

Gitee 极速下载 / dpvs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/iqiyi/dpvs
克隆/下载
Makefile 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
ywc689 提交于 2023-06-27 18:51 . tools: add healthcheck tool and config.mk
#
# DPVS is a software load balancer (Virtual Server) based on DPDK.
#
# Copyright (C) 2021 iQIYI (www.iqiyi.com).
# All Rights Reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
# Makefile for DPVS
#
MAKE = make
CC = gcc
LD = ld
RM = rm
SUBDIRS = src tools
INSDIR = $(PWD)/bin
export INSDIR
export KERNEL = $(shell /bin/uname -r)
include $(CURDIR)/config.mk
all:
for i in $(SUBDIRS); do $(MAKE) -C $$i || exit 1; done
clean:
for i in $(SUBDIRS); do $(MAKE) -C $$i clean || exit 1; done
distclean:
$(MAKE) -C tools/keepalived distclean || true
-rm -f tools/keepalived/configure
-rm -f tools/keepalived/Makefile
install:all
-mkdir -p $(INSDIR)
for i in $(SUBDIRS); do $(MAKE) -C $$i install || exit 1; done
uninstall:
-$(RM) -f $(TARGET) $(INSDIR)/*
C
1
https://gitee.com/mirrors/dpvs.git
git@gitee.com:mirrors/dpvs.git
mirrors
dpvs
dpvs
master

搜索帮助