1 Star 0 Fork 2

p-ll-p/sundown

forked from Gitee 极速下载/sundown 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile.win 669 Bytes
一键复制 编辑 原始数据 按行查看 历史
CFLAGS=/O2 /EHsc /I"src/" /I"examples"/ /I"html"/
CC=cl
SUNDOWN_SRC=\
src\markdown.obj \
src\stack.obj \
src\buffer.obj \
src\autolink.obj \
html\html.obj \
html\html_smartypants.obj \
html\houdini_html_e.obj \
html\houdini_href_e.obj
all: sundown.dll sundown.exe
sundown.dll: $(SUNDOWN_SRC) sundown.def
$(CC) $(SUNDOWN_SRC) sundown.def /link /DLL $(LDFLAGS) /out:$@
sundown.exe: examples\sundown.obj $(SUNDOWN_SRC)
$(CC) examples\sundown.obj $(SUNDOWN_SRC) /link $(LDFLAGS) /out:$@
# housekeeping
clean:
del $(SUNDOWN_SRC)
del sundown.dll sundown.exe
del sundown.exp sundown.lib
# generic object compilations
.c.obj:
$(CC) $(CFLAGS) /c $< /Fo$@
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/p-ll-p/sundown.git
git@gitee.com:p-ll-p/sundown.git
p-ll-p
sundown
sundown
master

搜索帮助