ObjFW  Check-in [a9ff3c4407]

Overview
Comment:Update to latest rev of buildsys.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a9ff3c4407b892a2dd609e1ba5c9f28f935921fe52a6161bb61f11cdde434022
User & Date: js on 2008-12-13 16:55:15
Other Links: manifest | tags
Context
2008-12-13
18:25
Some build related changes.
Thanks to Thorsten Glaser for a few ideas.
check-in: 8740f97cb3 user: js tags: trunk
16:55
Update to latest rev of buildsys. check-in: a9ff3c4407 user: js tags: trunk
15:08
One new exception; fix one FIXME in OFTCPSocket. check-in: b5ea1b43c4 user: js tags: trunk
Changes

Modified buildsys.mk.in from [13f43b9bd7] to [f318b59109].

119
120
121
122
123
124
125
126

127
128
129
130
131
132

133
134
135
136
137
138

139
140
141
142
143
144
145
119
120
121
122
123
124
125

126


127
128
129
130
131
132
133
134
135
136

137
138
139
140
141
142
143
144







-
+
-
-




+





-
+







				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}; \
		if ${MAKE} ${MFLAGS} $$deps; then \
		if ${MAKE} ${MFLAGS} $$deps && cat $$deps >.deps; then \
			test -f .deps && rm .deps; \
			cat $$deps >.deps; \
			rm -f $$deps; \
			${DEPEND_OK}; \
		else \
			:> .deps; \
			touch -t 0001010000 .deps; \
			${DEPEND_FAILED}; \
		fi; \
	fi

.c.dep .cc.dep .cxx.dep .m.dep:
	${CPP} ${CPPFLAGS} -M $< >$@ || rm -f $@
	${CPP} ${CPPFLAGS} -M $< >$@ || (rm -f $@; exit 1)

.d.dep:
.xpm.dep:

pre-depend:

${PROG} ${PROG_NOINST}: ${EXT_DEPS} ${OBJS}