Differences From Artifact [300aa94f95ae54a3]:
- File
Makefile
- 2010-11-25 03:32:41 - part of checkin [474c4facf0] on branch trunk - Introduced makefile to build documents. sample/macro.pmy is fully reformed. print(x) now returns x, not 0. (user: kinaba) [annotate]
To Artifact [b49249a409a1c2fd]:
- File
Makefile
- 2010-11-26 05:03:10 - part of checkin [207cea338a] on branch trunk - changed hiding mechanizem of x in let x = ... for @macro layer. Old: set(x,ValueLayer,undefined) Nee: set(x,NoopLayer,null) (user: kinaba) [annotate]
1 .PHONY : all windows doc 1 .PHONY : all windows doc
2 2
3 DC=dmd 3 DC=dmd
4 DC_OPT=-O -release 4 DC_OPT=-O -release
5 SRC = $(wildcard *.d polemy/*.d tricks/*.d) 5 SRC = $(wildcard *.d polemy/*.d tricks/*.d)
6 6
7 7
8 all: <
> 8
> 9 posix:
9 $(DC) $(DC_OPT) -ofbin/polemy $(SRC) 10 $(DC) $(DC_OPT) -ofbin/polemy $(SRC)
10 11
11 windows: 12 windows:
12 $(DC) $(DC_OPT) -ofbin\\polemy $(SRC) 13 $(DC) $(DC_OPT) -ofbin\\polemy $(SRC)
13 14
14 15
15 16