Sha256: 25fe7edd0f54107beee67d048a41da87089ece86d2d08527354579df7adba56c
Contents?: true
Size: 669 Bytes
Versions: 25
Compression:
Stored size: 669 Bytes
Contents
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$@
Version data entries
25 entries across 25 versions & 2 rubygems