buildsys  Check-in [6920533466]

Overview
Comment:Dependency generation was broken. Fixed.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 692053346620c0a52a173ec7ad7fad8c32832653ca0dd51c8e03084e5a162515
User & Date: js on 2008-09-14 16:09:59
Other Links: manifest | tags
Context
2008-09-14
16:15
Fix dependency generation for real. check-in: c246b6488a user: js tags: trunk
16:09
Dependency generation was broken. Fixed. check-in: 6920533466 user: js tags: trunk
2008-08-24
09:33
Support to compile python files. check-in: b05fac077b user: js tags: trunk
Changes

Modified buildsys.mk.in from [3204adcbc4] to [e261d6f5de].

95
96
97
98
99
100
101
102

103
104
105
106

107
108
109
110
111
112
113
95
96
97
98
99
100
101

102
103
104
105

106
107
108
109
110
111
112
113







-
+



-
+







		${DIR_LEAVE}; \
	done

depend: pre-depend ${SRCS}
	regen=0; \
	deps=""; \
	test -f .deps || regen=1; \
	for i in ${SRCS}; do \
	for i in ${OBJS}; do \
		case $$i in \
			*.o) \
				test $$i -nt .deps && regen=1; \
				deps="$${deps%.o}.dep $$i"; \
				deps="$$deps $${i%.o}.dep"; \
				;; \
		esac; \
	done; \
	if test x"$$regen" = x"1" -a x"$$deps" != "x"; then \
		${DEPEND_STATUS}; \
		rm -f .deps; \
		if ${MAKE} ${MFLAGS} $$deps; then \