root/branches/bud/GNUmakefile.dmd.win

Revision 244, 436 bytes (checked in by Gregor, 2 years ago)

GNUmakefile.dmd.win, dsss_build/GNUmakefile.win: Added GNU-compatible makefiles for Windows (provided by Michael Snoyman)

Line 
1 PREFIX=C:\\dsss
2 MAKE=make
3
4 all: dsss.exe
5
6 dsss.exe: dsss_build\\dsss_build.exe
7     dsss_build\\dsss_build.exe -od. -Idsss_build sss\\main.d -Tdsss_int
8     dsss_int.exe build
9
10 dsss_build\\dsss_build.exe:
11     cd dsss_build && $(MAKE) -f GNUmakefile.win && cd ..
12
13 install: dsss.exe
14     dsss.exe install --prefix=$(PREFIX)
15
16 clean:
17     -dsss.exe distclean
18     del *.obj
19     del dsss.exe
20     del dsss_int.exe
21     cd dsss_build && $(MAKE) -f Makefile.dos clean && cd ..
Note: See TracBrowser for help on using the browser.