加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile.am 644 Bytes
一键复制 编辑 原始数据 按行查看 历史
Robin Bird 提交于 2018-11-11 19:37 . Add files via upload
SUBDIRS = src
install-data-local:
@$(NORMAL_INSTALL)
if test -d $(srcdir)/pixmaps; then \
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \
for pixmap in $(srcdir)/pixmaps/*; do \
if test -f $$pixmap; then \
$(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \
fi \
done \
fi
dist-hook:
if test -d pixmaps; then \
mkdir $(distdir)/pixmaps; \
for pixmap in pixmaps/*; do \
if test -f $$pixmap; then \
cp -p $$pixmap $(distdir)/pixmaps; \
fi \
done \
fi
uninstall-local:
@$(NORMAL_INSTALL)
if test -d $(DESTDIR)$(pkgdatadir); then \
rm -r $(DESTDIR)$(pkgdatadir); \
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化