summaryrefslogtreecommitdiff
path: root/Makefile.win
diff options
context:
space:
mode:
authorDevin Torres <devin@devintorr.es>2013-09-20 01:09:52 -0500
committerDevin Torres <devin@devintorr.es>2013-09-20 01:14:14 -0500
commit189b325f19bc91691cf7ee24484de86f1c3c8a73 (patch)
treee1b254dc180e3b60a30a8de85857e817bc8138b2 /Makefile.win
parent2a4559138422c3320dd6a51d7673168aaaa8eb68 (diff)
downloadrust-hoedown-189b325f19bc91691cf7ee24484de86f1c3c8a73.tar.gz
Begin code reorganization
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