buildsys  Check-in [57bff58833]

Overview
Comment:Abort on error.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 57bff58833b6da6869212978cf0f088f1717579c89c83c97ceaafc1d0b09a0db
User & Date: js on 2007-09-24 19:13:25
Other Links: manifest | tags
Context
2007-09-24
21:12
install-sh doesn't work. check-in: 328cc9cdf7 user: js tags: trunk
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
Changes

Modified buildsys.mk.in from [9ca038f49e] to [714fa3a4f3].

72
73
74
75
76
77
78
79
80
81
82
83
84
85
86

.SILENT:
.SUFFIXES: .beam .c .cc .cxx .d .erl .m
.PHONY: all subdirs depend install uninstall clean distclean

all:
	for i in subdirs depend ${OBJS} ${STATIC_LIB} ${STATIC_LIB_NOINST} ${LIB} ${LIB_NOINST} ${PLUGIN} ${PLUGIN_NOINST} ${PROG} ${PROG_NOINST}; do \
		${MAKE} ${MFLAGS} $$i; \
	done

subdirs:
	for i in ${SUBDIRS}; do \
		${DIR_ENTER}; \
		${MAKE} ${MFLAGS} || exit 1; \
		${DIR_LEAVE}; \







|







72
73
74
75
76
77
78
79
80
81
82
83
84
85
86

.SILENT:
.SUFFIXES: .beam .c .cc .cxx .d .erl .m
.PHONY: all subdirs depend install uninstall clean distclean

all:
	for i in subdirs depend ${OBJS} ${STATIC_LIB} ${STATIC_LIB_NOINST} ${LIB} ${LIB_NOINST} ${PLUGIN} ${PLUGIN_NOINST} ${PROG} ${PROG_NOINST}; do \
		${MAKE} ${MFLAGS} $$i || exit 1; \
	done

subdirs:
	for i in ${SUBDIRS}; do \
		${DIR_ENTER}; \
		${MAKE} ${MFLAGS} || exit 1; \
		${DIR_LEAVE}; \