ultimatepp/uppbox/Scripts/Makefile
amrein 4d6a211eab Several modifications in domake:
- Add show_usage()
- Add parameters
- Enable c++ compiler
- Use environment variables

Other modifications:
- Make bash the default shell in Makefile domake and doinstall
- Simplify upp-devel (using make make install directly)
- Fix documentation accordingly

git-svn-id: svn://ultimatepp.org/upp/trunk@10722 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2017-01-17 01:34:42 +00:00

26 lines
419 B
Makefile

.PHONY: all install clean distclean
SHELL = /bin/sh
all:
+./domake
install:
+./doinstall --verbose
clean:
if [ "$(UPPOUT)" != "" -a -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