mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-27 22:03:39 -06:00
- 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
20 lines
312 B
Makefile
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
|