diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 90825e2392b2d70e43c7a25b8a3752299a933894 (patch) | |
tree | e33aa27f02b74604afbfd0ea4f1cfca8833d882a /qtsharp/src/uicsharp/Makefile.am | |
download | tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.tar.gz tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.zip |
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
Diffstat (limited to 'qtsharp/src/uicsharp/Makefile.am')
-rw-r--r-- | qtsharp/src/uicsharp/Makefile.am | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/qtsharp/src/uicsharp/Makefile.am b/qtsharp/src/uicsharp/Makefile.am new file mode 100644 index 00000000..ac42d99c --- /dev/null +++ b/qtsharp/src/uicsharp/Makefile.am @@ -0,0 +1,21 @@ +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 |