ObjFW  Check-in [bbdcfbfc8d]

Overview
Comment:Move one line to fix dependency generation.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: bbdcfbfc8d618ec421ab7de152c8e514ab819929e73b3887c7225020563c8ad4
User & Date: js on 2008-11-01 19:10:46
Other Links: manifest | tags
Context
2008-11-01
19:19
Touch .deps files in the past so they are always recreated. check-in: 1816a2e465 user: js tags: trunk
19:10
Move one line to fix dependency generation. check-in: bbdcfbfc8d user: js tags: trunk
18:56
Update buildsys. check-in: a3c93e6469 user: js tags: trunk
Changes

Modified buildsys.mk.in from [2e95fe4692] to [e412298582].

118
119
120
121
122
123
124
125
126

127
128
129
130
131
132
133
118
119
120
121
122
123
124

125
126
127
128
129
130
131
132
133







-

+







				test $$i -nt .deps && regen=1; \
				deps="$$deps $${i%.m}.dep"; \
				;; \
		esac; \
	done; \
	if test x"$$regen" = x"1" -a x"$$deps" != "x"; then \
		${DEPEND_STATUS}; \
		rm -f .deps; \
		if ${MAKE} ${MFLAGS} $$deps; then \
			rm -f .deps; \
			cat $$deps >.deps; \
			rm -f $$deps; \
			${DEPEND_OK}; \
		else \
			rm -f .deps $$deps; \
			${DEPEND_FAILED}; \
		fi; \