buildsys  Check-in [00339d87b6]

Overview
Comment:Change ${@} to $@.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 00339d87b60cde2ad8d0067a7e5233ce7144159c61b4098521040337783ab998
User & Date: js on 2009-06-15 21:48:09
Other Links: manifest | tags
Context
2009-07-22
01:21
Ignore undefined symbols when linking a library. check-in: 0416cfa0fa user: js tags: trunk
2009-06-15
21:48
Change ${@} to $@. check-in: 00339d87b6 user: js tags: trunk
2009-06-03
19:32
Add support for -rpath. check-in: 2500eb87ad user: js tags: trunk
Changes

Modified buildsys.mk.in from [50e67ad45a] to [f4a7daf573].

171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
		${LINK_OK}; \
	else \
		${LINK_FAILED}; \
	fi

${STATIC_LIB} ${STATIC_LIB_NOINST}: ${EXT_DEPS} ${OBJS}
	${LINK_STATUS}
	if ${AR} cr $@ ${OBJS} && ${RANLIB} ${@}; then \
		${LINK_OK}; \
	else \
		${LINK_FAILED}; \
		rm -f $@; \
	fi

.c.o:







|







171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
		${LINK_OK}; \
	else \
		${LINK_FAILED}; \
	fi

${STATIC_LIB} ${STATIC_LIB_NOINST}: ${EXT_DEPS} ${OBJS}
	${LINK_STATUS}
	if ${AR} cr $@ ${OBJS} && ${RANLIB} $@; then \
		${LINK_OK}; \
	else \
		${LINK_FAILED}; \
		rm -f $@; \
	fi

.c.o: