2 Star 2 Fork 0

codergeek/dpvs_reading

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
ywc689 提交于 2021-01-05 11:23 . update copyright banner
#
# 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
SUBDIRS = src tools
INSDIR = $(PWD)/bin
export INSDIR
export KERNEL = $(shell /bin/uname -r)
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
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/codergeek/dpvs_reading.git
[email protected]:codergeek/dpvs_reading.git
codergeek
dpvs_reading
dpvs_reading
v1.9.2

搜索帮助