mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
No more bm file handling in tarball build scripts git-svn-id: svn://ultimatepp.org/upp/trunk@14203 f0d560ea-af0d-0410-9eb7-867de7ffcac7
34 lines
466 B
Makefile
34 lines
466 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 theide.desktop
|
|
rm -f uppsrc/Makefile
|
|
rm -f uppsrc/uMakefile
|
|
rm -f uppsrc/build_info.h
|