ObjFW  Check-in [6791ca9a7a]

Overview
Comment:Show the output name if there's nothing to do in objfw-config.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 6791ca9a7a42c90bbdf1901175749f7a3e9c5a8d4f6bee12ccbfa8b8e55eeac9
User & Date: js on 2010-04-17 17:44:29
Other Links: manifest | tags
Context
2010-04-17
17:52
Also use the flags from the environment on --compile in objfw-config. check-in: 8e5f78b8d0 user: js tags: trunk
17:44
Show the output name if there's nothing to do in objfw-config. check-in: 6791ca9a7a user: js tags: trunk
17:37
Add --compile to objfw-config. check-in: 702c33d74b user: js tags: trunk
Changes

Modified objfw-config.in from [93752ea7d4] to [3125211be8].

70
71
72
73
74
75
76
77
78
79
80
81
82
83
84

	if test x"$link" = x"yes"; then
		echo "Linking $out..."
		$OBJC -o $out $objs $LIBS $LDFLAGS
		exit $?
	fi

	echo "Nothing to do..."
	exit 0
}

test -z "$1" && show_help

while test ! -z "$1"; do
	case "$1" in







|







70
71
72
73
74
75
76
77
78
79
80
81
82
83
84

	if test x"$link" = x"yes"; then
		echo "Linking $out..."
		$OBJC -o $out $objs $LIBS $LDFLAGS
		exit $?
	fi

	echo "Nothing to do for $out..."
	exit 0
}

test -z "$1" && show_help

while test ! -z "$1"; do
	case "$1" in