summaryrefslogtreecommitdiffstats
path: root/qtsharp/src/generator/Makefile.am
blob: 31532ae8169cdadfeab3b68278afd01acc277d27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: generator.exe

generator.exe: $(wildcard *.cs)
	csant -D$(CSC_NAME)=$(CSC) -C $(CSC_NAME)
	chmod 755 $@

clean:
	rm -rf generator.exe

distclean: clean

install:

uninstall:

.PHONY: all clean distclean install uninstall