Makefile.am: don't use "make -C", it isn't portable

This commit is contained in:
Alexander Barton 2012-09-27 01:11:01 +02:00
parent cf9f9e1f30
commit 114644cdb0
1 changed files with 3 additions and 3 deletions

View File

@ -26,13 +26,13 @@ maintainer-clean-local:
rm -f config.log debian rm -f config.log debian
testsuite: testsuite:
make -C src/testsuite check cd src/testsuite && make check
lint: lint:
make -C src/ngircd lint cd src/ngircd && make lint
srcdoc: srcdoc:
make -C doc srcdoc cd doc && make srcdoc
have-xcodebuild: have-xcodebuild:
@xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -list \ @xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -list \