buildsys  Check-in [066136bfc9]

Overview
Comment:Fix generating dependencies for .lib.o and .plugin.o.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 066136bfc9babf5ee6bf438ae9801eaf85cd48e4819b9064d4a2f427cafd6652
User & Date: js on 2010-09-19 02:05:14
Other Links: manifest | tags
Context
2010-09-26
11:36
Remove an unnecessary fork of a new sh. check-in: 2108108311 user: js tags: trunk
2010-09-19
02:05
Fix generating dependencies for .lib.o and .plugin.o. check-in: 066136bfc9 user: js tags: trunk
2010-09-16
01:04
It seems there are very different versions of tput. Handle both. check-in: 384043a8b4 user: js tags: trunk
Changes

Modified buildsys.mk.in from [f195ede5dc] to [291249d72c].

131
132
133
134
135
136
137
138



139
140
141
142
143
144
145
131
132
133
134
135
136
137

138
139
140
141
142
143
144
145
146
147







-
+
+
+







			:> .deps; \
			touch -t 0001010000 .deps; \
			${DEPEND_FAILED}; \
		fi; \
	fi

.c.c.dep .cc.cc.dep .cxx.cxx.dep .m.m.dep .mm.mm.dep .S.S.dep:
	${CPP} ${CPPFLAGS} -M $< >$@ || (rm -f $@; exit 1)
	${CPP} ${CPPFLAGS} -M $< | \
	sed 's/^\([^\.]*\)\.o:/\1.o \1.lib.o \1.plugin.o:/' >$@ || \
	(rm -f $@; exit 1)

pre-depend:

${PROG} ${PROG_NOINST}: ${EXT_DEPS} ${OBJS}
	${LINK_STATUS}
	if ${LD} -o $@ ${OBJS} ${LDFLAGS} ${LIBS}; then \
		${LINK_OK}; \