Forgot this file
[mono.git] / mcs / monoresgen / makefile.gnu
1 RUNTIME=mono
2 MCS = $(RUNTIME) ../mcs/mcs.exe
3 MCS_FLAGS = /target:exe $(MCS_DEFINES)
4 INSTALL = /usr/bin/install
5 prefix = /usr
6
7 SOURCES=monoresgen.cs
8
9 all: monoresgen.exe
10
11 monoresgen.exe: $(SOURCES)
12         $(MCS) $(MCS_FLAGS) -o $@ $(SOURCES)
13
14 install: all
15         mkdir -p $(prefix)/bin/
16         $(INSTALL) -m 755 monoresgen.exe $(prefix)/bin/
17
18 test:
19
20 clean:
21         rm -f monoresgen.exe