buildsys  Check-in [84d335c94c]

Overview
Comment:Add missing distclean target.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 84d335c94c50a0214672425a00b84a406c15c1c34b41a658823756f644150b63
User & Date: js on 2007-09-24 22:26:44
Other Links: manifest | tags
Context
2007-09-25
14:49
Oops. Fix parallel build. check-in: bedd3a521d user: js tags: trunk
2007-09-24
22:26
Add missing distclean target. check-in: 84d335c94c user: js tags: trunk
21:37
Use test instead of [ ]. check-in: e7ff22216a user: js tags: trunk
Changes

Modified buildsys.mk.in from [78e547626f] to [83fce59ce8].

362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
distclean: clean
	for i in ${SUBDIRS}; do \
		${DIR_ENTER}; \
		${MAKE} ${MFLAGS} distclean || exit 1; \
		${DIR_LEAVE}; \
	done
	
	for i in ${PROG} ${PROG_NOINST} ${STATIC_LIB} ${STATIC_LIB_NOINST}  ${PLUGIN} ${PLUGIN_NOINST} ${DISTCLEAN}; do \
		if test -f $$i -o -d $$i; then \
			if rm -fr $$i; then \
				${DELETE_OK}; \
			else \
				${DELETE_FAILED}; \
			fi \
		fi \







|







362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
distclean: clean
	for i in ${SUBDIRS}; do \
		${DIR_ENTER}; \
		${MAKE} ${MFLAGS} distclean || exit 1; \
		${DIR_LEAVE}; \
	done
	
	for i in ${PROG} ${PROG_NOINST} ${LIB} ${LIB_NOINST} ${STATIC_LIB} ${STATIC_LIB_NOINST}  ${PLUGIN} ${PLUGIN_NOINST} ${DISTCLEAN}; do \
		if test -f $$i -o -d $$i; then \
			if rm -fr $$i; then \
				${DELETE_OK}; \
			else \
				${DELETE_FAILED}; \
			fi \
		fi \