Skip to content

Commit

Permalink
be verbose again
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausKlein committed Jun 22, 2012
1 parent f662ccd commit 79a910a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,20 @@ else
gtestarchive:=$(gtestdir).zip
endif

.SILENT:
###XXX .SILENT:
.PHONY: test manual install clean distclean help ### all
.DEFAULT: all
all::

# bootstrap without installed ninja!
bootstrap.py: ;
ninja.bootstrap: bootstrap.py
ls -lrtd --full-time
if [ ! -d $(gtestdir) ] ; then \
if [ ! -f $(gtestarchive) ] ; then \
wget --no-verbose http://googletest.googlecode.com/files/$(gtestarchive); \
wget --verbose http://googletest.googlecode.com/files/$(gtestarchive); \
fi; \
unzip -qo $(gtestarchive); \
unzip -o $(gtestarchive); \
fi
$(RM) build.ninja
./$<
Expand Down Expand Up @@ -91,7 +92,8 @@ clean: build.ninja
distclean: clean
find . \( -name '*~' -o -name '.*~' -o -name '*.pyc' \) -delete
rm -rf CMakeTest/build build *.orig *~ tags ninja ninja_test *_perftest \
hash_collision_bench *.exe *.pdb *.ninja doc/doxygen/html *.html
hash_collision_bench *.exe *.pdb *.ninja doc/doxygen/html *.html \
ninja.bootstrap
git status --ignored --short

install: ninja
Expand Down

0 comments on commit 79a910a

Please sign in to comment.