You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/qtsharp/src/generator/Makefile.am

19 lines
263 B

AUTOMAKE_OPTIONS = -Wno-portability
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