From 90825e2392b2d70e43c7a25b8a3752299a933894 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- qtsharp/src/bindings/Makefile.am | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 qtsharp/src/bindings/Makefile.am (limited to 'qtsharp/src/bindings/Makefile.am') diff --git a/qtsharp/src/bindings/Makefile.am b/qtsharp/src/bindings/Makefile.am new file mode 100644 index 00000000..9732e2ec --- /dev/null +++ b/qtsharp/src/bindings/Makefile.am @@ -0,0 +1,23 @@ +all: Qt.dll + +QWidget.cs: + $(CLI) ../generator/generator.exe -f ../api/qt.xml -d . + +Qt.dll: QWidget.cs $(wildcard *.cs) $(wildcard static/*.cs) + cp static/*.cs . + csant -D$(CSC_NAME)=$(CSC) -C $(CSC_NAME) + +clean: + -rm Qt.dll + +distclean: clean + -rm *.cs + +install: + if ! test -d $(DESTDIR)$(libdir); then $(INSTALL) -d -m 0755 $(DESTDIR)$(libdir); fi + $(INSTALL) -m 0644 Qt.dll $(DESTDIR)$(libdir) + +uninstall: + rm -rf $(libdir)/Qt.dll + +.PHONY: all clean distclean install uninstall -- cgit v1.2.1