1 Star 0 Fork 1

烈火@zhangf/RE-flex

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile.am 1.74 KB
一键复制 编辑 原始数据 按行查看 历史
Robert van Engelen 提交于 2019-11-07 11:02 . released 1.5.1
SUBDIRS = lib src . tests @EXAMPLESDIR@
man1_MANS = doc/man/reflex.1
EXTRA_DIST = README.md LICENSE.txt CONTRIBUTING.md CODE_OF_CONDUCT.md
all-local: cp2bin
.PHONY: cp2bin
# to copy the reflex binary to reflex/bin (joins reflex.exe that's already there)
cp2bin: $(top_builddir)/src/reflex
-mkdir -p $(top_builddir)/bin
-cp -f $< $(top_builddir)/bin
@echo
@echo "OK"
@echo
# to generate the documentation: make doc/html
libdocdir = @DOXYGEN_OUTPUT_DIRECTORY@
DOXYGEN = @DOXYGEN@
$(libdocdir): $(top_builddir)/doc/Doxyfile $(top_builddir)/doc/index.md
if test -d $(libdocdir); then \
rm -Rf $(libdocdir); \
fi
if test "$(DOXYGEN)" != NO_DOXYGEN; then \
cd doc; \
$(DOXYGEN); \
else \
mkdir $(libdocdir); \
echo "No doxygen available -- library documentation not generated" >$(libdocdir)/stamp; \
fi
install-data-hook:
@echo " ______________________________________________________ "; \
echo "| |"; \
echo "| You have successfully built and installed reflex. |"; \
echo "| |"; \
echo "| You can use the reflex command to generate scanners. |"; \
echo "| Link your generated scanner with -lreflex. |"; \
echo "| |"; \
echo "| Thanks for using reflex. |"; \
echo "| |"; \
echo "| https://github.com/Genivia/RE-flex |"; \
echo "| https://sourceforge.net/projects/re-flex |"; \
echo "|______________________________________________________|";
.PHONY: test
test: $(top_builddir)/src/reflex
-cd tests; $(MAKE) && ./rtest
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangf/RE-flex.git
git@gitee.com:zhangf/RE-flex.git
zhangf
RE-flex
RE-flex
master

搜索帮助