diff options
| author | Alexander Barton <alex@barton.de> | 2008-04-20 14:50:46 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2008-04-20 14:50:46 +0200 |
| commit | c4a505d3a8d8c2798d7e926e42e27e0b23343a93 (patch) | |
| tree | 0a52b407e529e44068dbb761dcf232f751c576a2 | |
| parent | 8df445316ad08d7bdc792aaa426f21ce706b443c (diff) | |
| download | ngircd-c4a505d3a8d8c2798d7e926e42e27e0b23343a93.tar.gz ngircd-c4a505d3a8d8c2798d7e926e42e27e0b23343a93.zip | |
Fixed "xcode" make target (used to build ngIRCd with Mac OS X Xcode)
| -rw-r--r-- | Makefile.am | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 790f0df0..a44586b2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ # # ngIRCd -- The Next Generation IRC Daemon -# Copyright (c)2001-2003 by Alexander Barton (alex@barton.de) +# Copyright (c)2001-2008 Alexander Barton (alex@barton.de) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -8,8 +8,6 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: Makefile.am,v 1.17 2005/07/22 21:01:52 alex Exp $ -# AUTOMAKE_OPTIONS = gnu @@ -31,9 +29,10 @@ srcdoc: make -C doc srcdoc xcode: - @xcodebuild -project contrib/MacOSX/ngIRCd.xcode -list >/dev/null 2>&1 \ + @xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -list \ + >/dev/null 2>&1 \ || ( echo; echo "Error: \"xcodebuild\" not found!"; echo; exit 1 ) - xcodebuild -project contrib/MacOSX/ngIRCd.xcode -alltargets \ + xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -alltargets \ -buildstyle Development rpm: distcheck |