Overview
Comment: | Clear .SUFFIXES first to prevent compiling files silently. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
11473ee1ab56b51d0aec0f5b4b11a348 |
User & Date: | js on 2008-11-01 20:40:30 |
Other Links: | manifest | tags |
Context
2008-11-01
| ||
21:27 | Add interface for OFBigArray. check-in: 365925e363 user: js tags: trunk | |
20:40 | Clear .SUFFIXES first to prevent compiling files silently. check-in: 11473ee1ab user: js tags: trunk | |
20:29 | Delete .deps on make distclean. check-in: 88bad9ba54 user: js tags: trunk | |
Changes
Modified buildsys.mk.in from [041700e596] to [50d53ebd72].
︙ | ︙ | |||
77 78 79 80 81 82 83 | OBJS4 = ${OBJS3:.d=.o} OBJS5 = ${OBJS4:.erl=.beam} OBJS6 = ${OBJS5:.m=.o} OBJS7 = ${OBJS6:.py=.pyc} OBJS += ${OBJS7:.xpm=.o} .SILENT: | > | | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | OBJS4 = ${OBJS3:.d=.o} OBJS5 = ${OBJS4:.erl=.beam} OBJS6 = ${OBJS5:.m=.o} OBJS7 = ${OBJS6:.py=.pyc} OBJS += ${OBJS7:.xpm=.o} .SILENT: .SUFFIXES: .SUFFIXES: .beam .c .cc .cxx .d .dep .erl .m .o .py .pyc .xpm .PHONY: all subdirs pre-depend depend install install-extra uninstall uninstall-extra clean distclean all: for i in subdirs depend ${STATIC_LIB} ${STATIC_LIB_NOINST} ${LIB} ${LIB_NOINST} ${PLUGIN} ${PLUGIN_NOINST} ${PROG} ${PROG_NOINST}; do \ ${MAKE} ${MFLAGS} $$i || exit 1; \ done |
︙ | ︙ |