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