ultimatepp/uppbox/Scripts/Makefile
amrein ac48367415 If installing upp in user directory:
- Create theide.desktop in upp user directory and copy theide.png too
- Add an user xdg menu entry for theide
- Add an uninstall script that t only removes theide xdg menu entry for now

git-svn-id: svn://ultimatepp.org/upp/trunk@12782 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2019-02-22 16:49:25 +00:00

35 lines
474 B
Makefile

.PHONY: all umk ide install clean distclean
SHELL = /bin/sh
all:
+./domake
umk:
+./domake umk
ide:
+./domake ide
install:
+./doinstall --verbose
uninstall:
+./douninstall
clean:
if [ -d "$(UPPOUT)" ] ; then \
rm -fr "$(UPPOUT)" ; \
else \
rm -fr uppsrc/_out ; \
fi
rm -f uppsrc/ide.out
rm -f uppsrc/umk.out
distclean: clean
rm -f theide
rm -f umk
rm -f GCC.bm
rm -f CLANG.bm
rm -f uppsrc/Makefile
rm -f uppsrc/uMakefile
rm -f uppsrc/build_info.h