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: |
760cfcb16e2abb212b3c6cf59184e82d |
User & Date: | js on 2008-11-01 20:38:56 |
Other Links: | manifest | tags |
Context
2008-11-19
| ||
18:06 | Better target matching. check-in: a21709c9fc user: js tags: trunk | |
2008-11-01
| ||
20:38 | Clear .SUFFIXES first to prevent compiling files silently. check-in: 760cfcb16e user: js tags: trunk | |
20:22 | Remove .deps on distclean. check-in: e8a5ad3b7d user: js tags: trunk | |
Changes
Modified buildsys.mk.in from [041700e596] to [50d53ebd72].
︙ | |||
77 78 79 80 81 82 83 | 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: |
︙ |