blob: 50dfc2bcddf995f8ef106cf508c4692a5c385531 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
$NetBSD: patch-ae,v 1.5 2004/09/27 16:12:04 wiz Exp $
--- Makefile.in.orig 2004-05-11 10:13:22.000000000 +0200
+++ Makefile.in
@@ -229,7 +229,12 @@ sysconfdir = @sysconfdir@
target_alias = @target_alias@
ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = ChangeLog.1 PORTS
-SUBDIRS = doc lib src scripts po tests
+OPSYS!= uname -s
+.if ${OPSYS} == "Darwin"
+SUBDIRS = lib src scripts tests
+.else
+SUBDIRS = lib src scripts po tests
+.endif
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|