开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 0 Fork 27

MicroOS/MiniGUI

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (9)
标签 (1)
master
rel-3-2
drm
dev-3-4
complex-scripts
tmp-3-2-2
dev-3-2-2
rel-3-0
64b
ver-4-0-0
master
分支 (9)
标签 (1)
master
rel-3-2
drm
dev-3-4
complex-scripts
tmp-3-2-2
dev-3-2-2
rel-3-0
64b
ver-4-0-0
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (9)
标签 (1)
master
rel-3-2
drm
dev-3-4
complex-scripts
tmp-3-2-2
dev-3-2-2
rel-3-0
64b
ver-4-0-0
MiniGUI
/
make_tarball
MiniGUI
/
make_tarball
make_tarball 8.00 KB
一键复制 编辑 原始数据 按行查看 历史
VincentWei 提交于 2018年05月08日 03:09 +08:00 . cleanup for doxygen
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
#!/bin/bash
VERSION=3.2.0
SOURCE_DIR=libminigui-$VERSION
DEST_DIR=libminigui-$VERSION
. .config
if [ "$PACK_OS_LINUX" = "n" ]; then
DEST_DIR=libminigui-$VERSION
fi
[ -f ".config" ] || {
echo "Configuration file not found."
echo "Please run make menuconfig first."
exit 1
}
empty_files () {
local i
for i in $* ; do
echo "/* This file is not included for this release. */" > ${DEST_DIR}-${PACK_POSTFIX}/${i}
done
return 0
}
echo "Preparing the complete source tree..."
[ -f "${SOURCE_DIR}.tar.gz" ] || {
echo "Make the complete tarball from SVN..."
make dist 1>/dev/null 2>/dev/null
}
rm ${SOURCE_DIR}-${PACK_POSTFIX}* -rf
tar zxf ${SOURCE_DIR}.tar.gz
mv $SOURCE_DIR ${DEST_DIR}-${PACK_POSTFIX}
if [ "$PACK_OS_LINUX" = "n" ]; then
echo "Empty the files specific Linux and MiniGUI-Processes..."
empty_files src/client/*.[ch]
empty_files src/server/*.[ch]
empty_files src/kernel/sharedres.c
empty_files src/kernel/*-procs.[ch]
empty_files src/include/*-procs.h
empty_files src/include/client.h
empty_files src/include/server.h
empty_files src/include/sockio.h
empty_files src/include/sharedres.h
empty_files src/include/sockio.h
empty_files src/include/drawsemop.h
empty_files build/buildlib-linux-*
fi
if [ "$PACK_OS_UCLINUX" = "n" ]; then
echo "Empty the files specific uClinux..."
empty_files build/buildlib-uclinux-*
if [ "$PACK_OS_DARWIN" = "n" ]; then
empty_files src/libc/sysvipc_*.[ch]
fi
fi
if [ "$PACK_OS_ECOS" = "n" ]; then
echo "Empty the files specific eCos..."
empty_files build/buildlib-ecos-*
fi
if [ "$PACK_OS_UCOSII" = "n" ]; then
echo "Empty the files specific uC/OS-II..."
empty_files include/ucos2_*.h include/mgdrv-ucosii.c
empty_files src/libc/ucos2_*.[ch]
empty_files build/buildlib-ucos2-*
empty_files build/config-ucosii-*.h
empty_files build/minigui_ads_prj_ucos2.tar.gz
empty_files build/rules*.ucosii
fi
if [ "$PACK_OS_VXWORKS" = "n" ]; then
echo "Empty the files specific VxWorks..."
empty_files include/vxworks_*.h
empty_files src/libc/vxworks_*.[ch]
empty_files build/config-vxworks-*.h
empty_files build/rules*.vxworks
empty_files src/ial/vxi386_input.c
empty_files src/ial/vxppc_input.c
empty_files src/newgal/commlcd/vxworks_i386.c
empty_files src/newgal/commlcd/vxworks_ppc.c
fi
if [ "$PACK_OS_WIN32" = "n" ]; then
echo "Empty the files specific Win32..."
empty_files build/buildlib-win32*
empty_files build/config-win32*.h
empty_files build/config-mgdemo-win.h
empty_files build/*.msvc
empty_files build/*.dsp
empty_files build/*.dsw
empty_files build/pthreadVC1.dll
empty_files build/pthreadVC1.lib
empty_files include/win32_*.h
empty_files build/dirent.dll
empty_files build/dirent.lib
empty_files src/main/minigui-win32.c
empty_files src/newgal/commlcd/win_generic.c
fi
if [ "$PACK_OS_DARWIN" = "n" ]; then
echo "Empty the files specific OpenDarwin..."
if [ "$PACK_OS_UCLINUX" = "n" ]; then
empty_files src/libc/sysvipc_*.[ch]
empty_files build/buildlib-opendarwin
fi
fi
if [ "$PACK_OS_THREADX" = "n" ]; then
echo "Empty the files specific ThreadX..."
empty_files include/threadx_*.h include/threadx_*.c
empty_files src/libc/threadx_*.h src/libc/threadx_*.c
empty_files build/config-threadx-*.h
empty_files build/minigui_ads_prj_threadx.tar.gz
fi
if [ "$PACK_OS_NUCLEUS" = "n" ]; then
echo "Empty the files specific Nucleus..."
empty_files include/nucleus_*.h
empty_files src/libc/nucleus_*.[ch]
empty_files build/config-nucleus-*.h
empty_files build/rules-*.nucleus
empty_files build/minigui_ads_prj_nucleus.tar.gz
fi
if [ "$PACK_OS_OSE" = "n" ]; then
echo "Empty the files specific OSE..."
empty_files include/ose_*.h
empty_files src/libc/ose_*.[ch]
empty_files build/config-ose-*.h
empty_files build/rules*.ose
empty_files src/newgal/commlcd/ose_mx21.c
fi
if [ "$PACK_OS_PSOS" = "n" ]; then
echo "Empty the files specific pSOS..."
empty_files include/psos_*.h
empty_files src/libc/psos_*.[ch]
empty_files build/config-psos-*.h
empty_files build/rules*.psos
fi
if [ "$PACK_OWN_MALLOC" = "n" ]; then
echo "Empty the files specific own implementation of malloc..."
empty_files include/own_malloc.h
empty_files src/libc/malloc.c
fi
if [ "$PACK_OWN_STDIO" = "n" ]; then
echo "Empty the files specific own implementation of stdio functions..."
empty_files include/own_stdio.h
empty_files src/libc/defdev.c src/libc/stdioinlines.c
empty_files src/libc/fnprintf.c src/libc/fprintf.c src/libc/printf.c src/libc/vfnprintf.c src/libc/ieeefp.h
empty_files src/libc/snprintf.c src/libc/sprintf.c src/libc/vsnprintf.c src/libc/vfscanf.c
empty_files src/libc/vsscanf.c src/libc/fscanf.c src/libc/sscanf.c src/libc/scanf.c
fi
if [ "$CONFIG_NEWGAL_DUMMY" = "n" ]; then
echo "Empty the files specific implementation of dummy NEWGAL engine..."
empty_files src/newgal/dummy/*.[ch]
fi
if [ "$CONFIG_NEWGAL_FBCON" = "n" ]; then
echo "Empty the files specific implementation of fbcon NEWGAL engine..."
empty_files src/newgal/fbcon/*.[ch]
fi
if [ "$CONFIG_NEWGAL_QVFB" = "n" ]; then
echo "Empty the files specific implementation of qvfb NEWGAL engine..."
empty_files src/newgal/qvfb/*.[ch]
fi
if [ "$CONFIG_NEWGAL_WVFB" = "n" ]; then
echo "Empty the files specific wvfb NEWGAL engine..."
empty_files src/newgal/wvfb/*.[ch]
fi
if [ "$CONFIG_NEWGAL_COMMONLCD" = "n" ]; then
echo "Empty the files specific CommonLCD NEWGAL engine..."
empty_files src/newgal/commlcd/*.[ch]
fi
if [ "$CONFIG_NEWGAL_SHADOW" = "n" ]; then
echo "Empty the files specific Shadow NEWGAL engine..."
empty_files src/newgal/shadow/*.[ch]
fi
if [ "$CONFIG_NEWGAL_MLSHADOW" = "n" ]; then
echo "Empty the files specific MLShadow NEWGAL engine..."
empty_files src/newgal/mlshadow/*.[ch]
fi
if [ "$CONFIG_NEWGAL_EM85XXYUV" = "n" ]; then
echo "Empty the files specific em85xxyuv NEWGAL engine..."
empty_files src/newgal/em85xxyuv/*.[ch]
fi
if [ "$CONFIG_NEWGAL_EM85XXOSD" = "n" ]; then
echo "Empty the files specific em85xxosd NEWGAL engine..."
empty_files src/newgal/em85xxosd/*.[ch]
fi
if [ "$CONFIG_NEWGAL_SVPXXOSD" = "n" ]; then
echo "Empty the files specific svpxxosd NEWGAL engine..."
empty_files src/newgal/svpxxosd/*.[ch]
fi
if [ "$CONFIG_NEWGAL_BF533" = "n" ]; then
echo "Empty the files specific bf533 NEWGAL engine..."
empty_files src/newgal/bf533/*.[ch]
fi
if [ "$CONFIG_NEWGAL_MB93493" = "n" ]; then
echo "Empty the files specific mb93493 NEWGAL engine..."
empty_files src/newgal/mb93493/*.[ch]
fi
if [ "$CONFIG_NEWGAL_UTPMC" = "n" ]; then
echo "Empty the files specific utpmc NEWGAL engine..."
empty_files src/newgal/utpmc/*.[ch]
fi
if [ "$CONFIG_NEWGAL_DFB" = "n" ]; then
echo "Empty the files specific DirectFB NEWGAL engine..."
empty_files src/newgal/dfb/*.[ch]
fi
if [ "$CONFIG_NEWGAL_EM86GFX" = "n" ]; then
echo "Empty the files specific EM86xx GFX NEWGAL engine..."
empty_files src/newgal/em86gfx/*.[ch]
fi
if [ "$CONFIG_NEWGAL_HI35XX" = "n" ]; then
echo "Empty the files specific HI35xx NEWGAL engine..."
empty_files src/newgal/hisi/*.[ch]
fi
if [ "$CONFIG_IAL_DUMMY" = "n" ]; then
echo "Empty the files specific implementation of dummy IAL engine..."
fi
if [ "$CONFIG_IAL_AUTO" = "n" ]; then
echo "Empty the files specific implementation of auto IAL engine..."
fi
if [ "$CONFIG_IAL_NATIVE" = "n" ]; then
echo "Empty the files specific implementation of Linux native IAL engine..."
fi
if [ "$CONFIG_IAL_IPAQ" = "n" ]; then
echo "Empty the files specific ipaq IAL engine..."
empty_files src/ial/ipaq.c src/ial/ipaq.h
fi
if [ "$CONFIG_IAL_COMMON" = "n" ]; then
echo "Empty the files specific common IAL engine..."
empty_files src/ial/comminput.c src/ial/comminput.h
fi
echo "Making the tarball..."
tar czf ${DEST_DIR}-${PACK_POSTFIX}.tar.gz ${DEST_DIR}-${PACK_POSTFIX}
echo "Done."
exit 0
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

MiniGUI 是一个自由软件项目。其目标是提供一个快速、稳定、跨操作系统的图形用户界面(GUI)支持系统,尤其是基于 Linux/uClinux、eCos 以及其他传统 RTOS(如 VxWorks、ThreadX、uC/OS-II、Nucleus 等)的实时嵌入式操作系统。
暂无标签
GPL-3.0
使用 GPL-3.0 开源许可协议
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/MicroOS/MiniGUI.git
git@gitee.com:MicroOS/MiniGUI.git
MicroOS
MiniGUI
MiniGUI
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /