-
-
Notifications
You must be signed in to change notification settings - Fork 688
Expand file tree
/
Copy pathMakefile.nt
More file actions
36 lines (25 loc) · 735 Bytes
/
Makefile.nt
File metadata and controls
36 lines (25 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# `configure` adds some variables before this line, and
# the rest dispatch to "build.zuo" to build
all: .\zuo.exe
.\zuo.exe . all
install: .\zuo.exe
.\zuo.exe . install
plain-install: .\zuo.exe
.\zuo.exe . plain-install
cs: .\zuo.exe .phony
.\zuo.exe . cs
cs-install: .\zuo.exe
.\zuo.exe . cs-install
plain-cs-install: .\zuo.exe
.\zuo.exe . plain-cs-install
bc: .\zuo.exe .phony
.\zuo.exe . bc
bc-install: .\zuo.exe
.\zuo.exe . bc-install
plain-bc-install: .\zuo.exe
.\zuo.exe . plain-bc-install
zuo.exe: "$(srcdir)\zuo\zuo.c"
cl.exe /O2 /Fe:pre_zuo.exe "$(srcdir)\zuo\zuo.c"
.\pre_zuo.exe -X "$(srcdir)\zuo\lib" "$(srcdir)\ChezScheme\makefiles\libpath.zuo" "$(srcdir)\zuo"
cl.exe /O2 /Fe:zuo.exe zuo.c
.phony: