Skip to content

Commit b3e2aca

Browse files
Small fixes
1 parent d3b4ea9 commit b3e2aca

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile.windows

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ all: bin/mhs.exe bin/mhseval.exe
77
bin/mhs.exe: src/runtime/*.c src/runtime/windows/* #generated/mhs.c
88
@-mkdir bin
99
@-mkdir build
10-
cl -Fobuild\ -O2 -Isrc/runtime -Isrc/runtime/windows src/runtime/main.c src/runtime/eval.c generated/mhs.c -Febin/mhs.exe
10+
cl -F"obuild\\" -O2 -Isrc/runtime -Isrc/runtime/windows src/runtime/main.c src/runtime/eval.c generated/mhs.c -Fe"bin\\mhs.exe"
1111

1212
# Compile combinator evaluator
1313
bin/mhseval.exe: src/runtime/*.c src/runtime/windows/* src/runtime/comb.c
1414
@-mkdir bin
1515
@-mkdir build
16-
cl -Fobuild\ -O2 -Isrc/runtime -Isrc/runtime/windows src/runtime/main.c src/runtime/eval.c src/runtime/comb.c -Febin/mhseval.exe
16+
cl -F"obuild\\" -O2 -Isrc/runtime -Isrc/runtime/windows src/runtime/main.c src/runtime/eval.c src/runtime/comb.c -Fe"bin\\mhseval.exe"
1717

1818
targets.conf: targets.conf.in
1919
sed -e "s,GMPFLAGS,$(MHSGMPCCFLAGS)," -e "s,GMPLIBS,$(MHSGMPCCLIBS)," targets.conf.in > targets.conf
2020

2121
exampletest: bin/mhs.exe bin/mhseval.exe Example.hs targets.conf
2222
bin\mhs -r Example
2323
bin\mhs Example && bin\mhseval
24-
bin\mhs -itests Nfib && bin\mhseval
24+
bin\mhs -itests Nfib && bin\mhseval
2525
bin\mhs -r -itests Info
2626
bin\mhs -twindows Example -oEx.exe && Ex && rm Ex.exe

0 commit comments

Comments
 (0)