buildsys  Check-in [7edbf0b1f9]

Overview
Comment:Don't depend on subdirs, it's done anyway.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 7edbf0b1f9f6367f0148760820bd740c807ce95515334c1523c1f03474b0f50f
User & Date: js on 2007-09-24 18:58:20
Other Links: manifest | tags
Context
2007-09-24
19:13
Abort on error. check-in: 57bff58833 user: js tags: trunk
18:58
Don't depend on subdirs, it's done anyway. check-in: 7edbf0b1f9 user: js tags: trunk
18:45
Always prefix comparisons with x. check-in: 1d055c3b0b user: js tags: trunk
Changes

Modified buildsys.mk.in from [a2b24a5da0] to [9ca038f49e].

137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
	${LINK_STATUS}
	if ${AR} cr $@ ${OBJS}; then \
		${LINK_OK}; \
	else \
		${LINK_FAILED}; \
	fi

${EXT_DEPS}: subdirs

.c.o:
	${COMPILE_STATUS}
	if ${CC} ${CFLAGS} ${CPPFLAGS} -c -o $@ $<; then \
		${COMPILE_OK}; \
	else \
		${COMPILE_FAILED}; \
	fi







<
<







137
138
139
140
141
142
143


144
145
146
147
148
149
150
	${LINK_STATUS}
	if ${AR} cr $@ ${OBJS}; then \
		${LINK_OK}; \
	else \
		${LINK_FAILED}; \
	fi



.c.o:
	${COMPILE_STATUS}
	if ${CC} ${CFLAGS} ${CPPFLAGS} -c -o $@ $<; then \
		${COMPILE_OK}; \
	else \
		${COMPILE_FAILED}; \
	fi