mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-29 22:04:02 -06:00
- 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
26 lines
419 B
Makefile
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
|