root/branches/bud/Makefile.dmd.posix

Revision 95, 361 bytes (checked in by Gregor, 2 years ago)

Makefile.*: Don't use getmango.

Line 
1 PREFIX=/usr
2
3 all: dsss
4
5 dsss: dsss_build/dsss_build
6     ./dsss_build/dsss_build -od. -Idsss_build sss/main.d -Tdsss
7     `pwd`/dsss build
8
9 dsss_build/dsss_build:
10     cd dsss_build && \
11     $(MAKE) -f Makefile.unix
12
13 install: dsss
14     `pwd`/dsss install --prefix=$(PREFIX)
15
16 clean:
17     -`pwd`/dsss distclean
18     rm -f *.o
19     rm -f dsss
20     cd dsss_build && \
21     $(MAKE) -f Makefile.unix clean
Note: See TracBrowser for help on using the browser.