1 Star 0 Fork 0

chenhaoyang2019/jpegViewer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 289 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenhaoyang2019 提交于 2020-06-03 22:27 . create XImage
OBJ=jpegViewer
CXX=g++
CC=gcc
LIB= -lX11 -lpthread -ljpeg
objects=main.o read.o
CFLASS= -g -O0
OBJ:${objects}
${CC} ${CFLASS} -o ${OBJ} ${objects} ${LIB}
main.o:main.c
${CC} ${CFLASS} -c main.c
read.o:read.c
${CC} ${CFLASS} -c read.c
.PHONY:clean
clean:
rm -f ${OBJ} ${objects}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/chenhaoyang2019/jpegViewer.git
[email protected]:chenhaoyang2019/jpegViewer.git
chenhaoyang2019
jpegViewer
jpegViewer
master

搜索帮助