summaryrefslogtreecommitdiff
path: root/Makefile.win
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.win')
-rw-r--r--Makefile.win18
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile.win b/Makefile.win
index ea668b2..a49d741 100644
--- a/Makefile.win
+++ b/Makefile.win
@@ -2,7 +2,7 @@
CFLAGS=/O2 /EHsc /I"src/" /I"examples"/ /I"html"/
CC=cl
-SUNDOWN_SRC=\
+HOEDOWN_SRC=\
src\markdown.obj \
src\stack.obj \
src\buffer.obj \
@@ -12,19 +12,19 @@ SUNDOWN_SRC=\
html\houdini_html_e.obj \
html\houdini_href_e.obj
-all: sundown.dll sundown.exe
+all: hoedown.dll hoedown.exe
-sundown.dll: $(SUNDOWN_SRC) sundown.def
- $(CC) $(SUNDOWN_SRC) sundown.def /link /DLL $(LDFLAGS) /out:$@
+hoedown.dll: $(HOEDOWN_SRC) hoedown.def
+ $(CC) $(HOEDOWN_SRC) hoedown.def /link /DLL $(LDFLAGS) /out:$@
-sundown.exe: examples\sundown.obj $(SUNDOWN_SRC)
- $(CC) examples\sundown.obj $(SUNDOWN_SRC) /link $(LDFLAGS) /out:$@
+hoedown.exe: examples\hoedown.obj $(HOEDOWN_SRC)
+ $(CC) examples\hoedown.obj $(HOEDOWN_SRC) /link $(LDFLAGS) /out:$@
# housekeeping
clean:
- del $(SUNDOWN_SRC)
- del sundown.dll sundown.exe
- del sundown.exp sundown.lib
+ del $(HOEDOWN_SRC)
+ del hoedown.dll hoedown.exe
+ del hoedown.exp hoedown.lib
# generic object compilations