ultimatepp/uppbox/Scripts/Makefile
amrein 8d7a331cf9 - used 'tr' instead of ${variable^^} that only works in bash (for uppercase letter substitutions)
- removed 'function' keyword (only work in bash)
- replaced 'echo' by 'which echo' because in old /bin/sh, echo is replaced by an internal version that doesn't support escape character (-> we had no color in stdout)
- add --verbose parameter to 'doinstall' in Makefile in order to see installation details

git-svn-id: svn://ultimatepp.org/upp/trunk@10695 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2017-01-11 14:13:21 +00:00

20 lines
312 B
Makefile

.PHONY: all install clean distclean
SHELL = /bin/sh
all:
+$(SHELL) domake
install:
$(SHELL) doinstall --verbose
clean:
rm -fr uppsrc/_out
rm -f uppsrc/ide.out
rm -f uppsrc/umk.out
distclean: clean
rm -f GCC.bm
rm -f CLANG.bm
rm -f uppsrc/Makefile
rm -f uppsrc/uMakefile
rm -f uppsrc/build_info.h