ObjFW  Check-in [ca9963ce69]

Overview
Comment:objfw-compile: Create build dir.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: ca9963ce69215e2e4a43a907b9ed0736f1b8ca59e606b470663e7638d07282ff
User & Date: js on 2012-09-30 14:10:14
Other Links: manifest | tags
Context
2012-10-02
00:01
OFTimer: Fix -[waitUntilDone]. check-in: bbc8bb5ad1 user: js tags: trunk
2012-09-30
14:10
objfw-compile: Create build dir. check-in: ca9963ce69 user: js tags: trunk
2012-09-29
10:51
OFHTTPRequest: Force "Connection: close". check-in: 294346482d user: js tags: trunk
Changes

Modified utils/objfw-compile from [66678c5c9b] to [bbb0baebec].

240
241
242
243
244
245
246

247
248
249
250
251
252
253
	else
		build="yes"
	fi

	if test x"$build" = x"yes"; then
		link="yes"
		status_compiling $i

		$OBJC $CPPFLAGS $OBJCFLAGS -c -o $obj $i || \
			status_compile_failed $i $?
		status_compiled $i
	fi
done

test x"$lib" = x"no" -a x"$plugin" = x"no" && \







>







240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
	else
		build="yes"
	fi

	if test x"$build" = x"yes"; then
		link="yes"
		status_compiling $i
		mkdir -p "$(dirname $obj)" || status_compile_failed $i $?
		$OBJC $CPPFLAGS $OBJCFLAGS -c -o $obj $i || \
			status_compile_failed $i $?
		status_compiled $i
	fi
done

test x"$lib" = x"no" -a x"$plugin" = x"no" && \