root/branches/tango/Makefile.gdc.posix

Revision 409, 396 bytes (checked in by Gregor, 2 years ago)

Tango branch, up to date with r385

Line 
1 PREFIX=/usr
2
3 all: dsss
4
5 dsss: rebuild/rebuild
6     cp -f rebuild/defaults/gdc-posix rebuild/rebuild.conf/default
7     ./rebuild/rebuild -full -Irebuild sss/main.d -ofdsss
8     `pwd`/dsss build
9
10 rebuild/rebuild:
11     cd rebuild && \
12     $(MAKE)
13
14 install: dsss
15     `pwd`/dsss install --prefix=$(PREFIX)
16
17 clean:
18     -`pwd`/dsss distclean
19     rm -rf dsss_objs dsss_imports
20     rm -f *.o
21     rm -f dsss
22     cd rebuild && \
23     $(MAKE) clean
Note: See TracBrowser for help on using the browser.