* Makefile.in (install): Don't install the testsuite.

This commit is contained in:
Brian Dessent 2008-03-09 09:41:42 +00:00
parent 59fb00ae07
commit 92108f4e26
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-03-09 Brian Dessent <brian@dessent.net>
* Makefile.in (install): Don't install the testsuite.
2008-03-08 Brian Dessent <brian@dessent.net>
* Makefile.in: Add a 'check' target that builds and runs

View File

@ -157,7 +157,7 @@ realclean: clean
install: all
$(SHELL) $(updir1)/mkinstalldirs $(bindir)
for i in $(CYGWIN_BINS) $(MINGW_BINS) ; do \
for i in $(CYGWIN_BINS) ${filter-out testsuite.exe,$(MINGW_BINS)} ; do \
n=`echo $$i | sed '$(program_transform_name)'`; \
$(INSTALL_PROGRAM) $$i $(bindir)/$$n; \
done