root/trunk/iterators/Makefile

Revision 13, 449 bytes (checked in by BCS, 2 years ago)

added Witold Baryluk's iterators

Line 
1 all: tests big sample iterators.html
2
3
4 iterators.html: iterators.d
5     dmd -w -D -o- iterators.d
6     chmod +r ./iterators.html
7
8 big: tests.d iterators.d
9     dmd -w -O -inline -release -debug -ofbig iterators.d big.d
10
11 tests: tests.d iterators.d
12     dmd -w -O -debug -oftests iterators.d tests.d
13
14 sample: sample.d iterators.d
15     dmd -w -O -debug -ofsample iterators.d sample.d
16
17 clean:
18     rm -f sample sample.o
19     rm -f big big.o
20     rm -f tests tests.o
21     rm -f iterators.o
Note: See TracBrowser for help on using the browser.