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/uicsharp/Makefile.am

24 lines
468 B

AUTOMAKE_OPTIONS = -Wno-portability
all: uicsharp.exe
uicsharp.exe: $(wildcard *.cs)
csant -D$(CSC_NAME)=$(CSC) -C $(CSC_NAME)
chmod 0755 $@
clean:
-rm uicsharp.exe
distclean: clean
install: uicsharp.exe
-$(MAKE) uninstall
-mkdir $(bindir)
install -o root -g root -m 0755 uicsharp.exe $(bindir)/uicsharp.exe
ln -s $(bindir)/uicsharp.exe $(bindir)/uicsharp
uninstall:
-rm -rf $(bindir)/uicsharp.exe $(bindir)/uicsharp
.PHONY: all clean install uninstall