2 Star 0 Fork 0

陈康冰/ElectronExchanger-Server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
makefile 437 Bytes
一键复制 编辑 原始数据 按行查看 历史
Chen Kangbing 提交于 2020-09-15 17:09 . protocol
INCL = -Iinc
DEPS = $(wildcard inc/*.h)
SRCS = $(wildcard src/*.c)
OBJS = $(patsubst src/%.c,obj/%.o, $(SRCS))
TARGET = server
CC = gcc
CFLAGS = -Wall -Wextra -g
DEPFLAGS := -pthread
vpath %.h inc
all: clean $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) $(DEPFLAGS) $(OBJS) -o $(TARGET) $$(mysql_config --libs)
obj/%.o: src/%.c $(DEPS)
$(CC) $(CFLAGS) $(DEPFLAGS) -c $(INCL) $< -o $@
.PHONY: clean
clean:
rm -rf $(OBJS) $(TARGET)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/ckblau/electron-exchanger.git
git@gitee.com:ckblau/electron-exchanger.git
ckblau
electron-exchanger
ElectronExchanger-Server
master

搜索帮助