summaryrefslogtreecommitdiff
path: root/Makefile.win
diff options
context:
space:
mode:
authorXavier Mendez <jmendeth@gmail.com>2014-03-23 20:17:02 +0100
committerXavier Mendez <jmendeth@gmail.com>2014-03-23 20:17:02 +0100
commitea8446f6b8a22224aa45465b1bedcfd303b4a196 (patch)
treed295c06dfab65954116a3dcbfb80ca339fbc9df9 /Makefile.win
parent51291eb3d3dac336f3bd85e68da4b96de575c247 (diff)
downloadrust-hoedown-ea8446f6b8a22224aa45465b1bedcfd303b4a196.tar.gz
Rename examples/ to bin/
Diffstat (limited to 'Makefile.win')
-rw-r--r--Makefile.win8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.win b/Makefile.win
index a28326b..cda24b9 100644
--- a/Makefile.win
+++ b/Makefile.win
@@ -17,11 +17,11 @@ all: hoedown.dll hoedown.exe smartypants.exe
hoedown.dll: $(HOEDOWN_SRC) hoedown.def
$(CC) $(HOEDOWN_SRC) hoedown.def /link /DLL $(LDFLAGS) /out:$@
-hoedown.exe: examples\hoedown.obj $(HOEDOWN_SRC)
- $(CC) examples\hoedown.obj $(HOEDOWN_SRC) /link $(LDFLAGS) /out:$@
+hoedown.exe: bin\hoedown.obj $(HOEDOWN_SRC)
+ $(CC) bin\hoedown.obj $(HOEDOWN_SRC) /link $(LDFLAGS) /out:$@
-smartypants.exe: examples\smartypants.obj $(HOEDOWN_SRC)
- $(CC) examples\smartypants.obj $(HOEDOWN_SRC) /link $(LDFLAGS) /out:$@
+smartypants.exe: bin\smartypants.obj $(HOEDOWN_SRC)
+ $(CC) bin\smartypants.obj $(HOEDOWN_SRC) /link $(LDFLAGS) /out:$@
# Housekeeping