Overview
Comment: | Allow building directories in parallel.
Inter-dir dependencies can be specified like this: |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b7a12103d69e03e16d6a11aef61d366e |
User & Date: | js on 2012-04-19 15:41:20 |
Other Links: | manifest | tags |
Context
2012-04-25
| ||
09:51 | Only generate depends if the compiler supports it. check-in: 775d4eae01 user: js tags: trunk | |
2012-04-19
| ||
15:41 | Allow building directories in parallel. check-in: b7a12103d6 user: js tags: trunk | |
2012-04-08
| ||
17:51 | Use the language specific flags for deps. check-in: dbf218689a user: js tags: trunk | |
Changes
Modified buildsys.mk.in from [704f45e5ee] to [eb2bd4ea40].
︙ | ︙ | |||
100 101 102 103 104 105 106 | PLUGIN_OBJS = ${OBJS:.o=.plugin.o} MO_FILES = ${LOCALES:.po=.mo} .SILENT: .SUFFIXES: .SUFFIXES: .beam .c .c.dep .cc .cc.dep .class .cxx .cxx.dep .d .erl .lib.o .java .mo .m .m.dep .mm .mm.dep .o .plugin.o .po .py .pyc .rc .S .S.dep .xpm | | | > > | | 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | PLUGIN_OBJS = ${OBJS:.o=.plugin.o} MO_FILES = ${LOCALES:.po=.mo} .SILENT: .SUFFIXES: .SUFFIXES: .beam .c .c.dep .cc .cc.dep .class .cxx .cxx.dep .d .erl .lib.o .java .mo .m .m.dep .mm .mm.dep .o .plugin.o .po .py .pyc .rc .S .S.dep .xpm .PHONY: all subdirs pre-depend depend install install-extra uninstall uninstall-extra clean distclean locales ${SUBDIRS} all: ${MAKE} ${MFLAGS} subdirs ${MAKE} ${MFLAGS} depend ${MAKE} ${STATIC_LIB} ${STATIC_LIB_NOINST} ${STATIC_PIC_LIB} ${STATIC_PIC_LIB_NOINST} ${SHARED_LIB} ${SHARED_LIB_NOINST} ${PLUGIN} ${PLUGIN_NOINST} ${PROG} ${PROG_NOINST} ${JARFILE} locales subdirs: ${SUBDIRS} ${SUBDIRS}: for i in $@; do \ ${DIR_ENTER}; \ ${MAKE} ${MFLAGS} || exit $$?; \ ${DIR_LEAVE}; \ done depend: pre-depend ${SRCS} regen=0; \ |
︙ | ︙ |