ObjFW  Check-in [24ea7eb831]

Overview
Comment:Update buildsys.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 24ea7eb831adf57427dc3592f5011717391dc7a991ceef8bbdfd06b33c8f796a
User & Date: js on 2011-10-12 14:57:26
Other Links: manifest | tags
Context
2011-10-12
15:10
Change the order of includes to satisfy newer MinGW versions. check-in: 27500362e7 user: js tags: trunk
14:57
Update buildsys. check-in: 24ea7eb831 user: js tags: trunk
14:35
Use OFStreamObserver_select on Win32, even if sys/select.h is missing. check-in: fb9371a7ce user: js tags: trunk
Changes

Modified buildsys.mk.in from [55b520a90f] to [3c1ad0688f].

204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
		esac \
	done; \
	for i in $$ars; do \
		dir=".$$(echo $$i | sed 's/\//_/g').objs"; \
		rm -fr $$dir; \
		mkdir -p $$dir; \
		cd $$dir; \
		ar x ../$$i; \
		for j in *.o; do \
			objs="$$objs $$dir/$$j"; \
		done; \
		cd ..; \
	done; \
	if ${AR} cr $@ $$objs && ${RANLIB} $@; then \
		${LINK_OK}; \







|







204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
		esac \
	done; \
	for i in $$ars; do \
		dir=".$$(echo $$i | sed 's/\//_/g').objs"; \
		rm -fr $$dir; \
		mkdir -p $$dir; \
		cd $$dir; \
		${AR} x ../$$i; \
		for j in *.o; do \
			objs="$$objs $$dir/$$j"; \
		done; \
		cd ..; \
	done; \
	if ${AR} cr $@ $$objs && ${RANLIB} $@; then \
		${LINK_OK}; \