Differences From Artifact [78514e4ad4]:
- File
tests/terminal/Makefile
— part of check-in
[be8865bcd2]
at
2021-09-05 20:19:03
on branch trunk
— Don't automatically run tests
This avoids running them twice (once on make and once on make install)
and potentially running them as root (during make install). (user: js, size: 2778) [annotate] [blame] [check-ins using] [more...]
To Artifact [388d9ed97f]:
- File tests/terminal/Makefile — part of check-in [6706148ab5] at 2021-10-08 12:49:45 on branch amiga-library — tests/{objc_sync,terminal}: Use linklib (user: js, size: 2840) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
62 63 64 65 66 67 68 |
rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR}; \
rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR_MINOR}; \
rm -f objfwrt${OBJFWRT_LIB_MAJOR}.dll; \
rm -f libobjfwrt.${OBJFWRT_LIB_MAJOR}.dylib; \
exit $$EXIT
CPPFLAGS += -I../../src -I../../src/exceptions -I../../src/runtime -I../..
| | > > | 62 63 64 65 66 67 68 69 70 71 72 |
rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR}; \
rm -f libobjfwrt.so.${OBJFWRT_LIB_MAJOR_MINOR}; \
rm -f objfwrt${OBJFWRT_LIB_MAJOR}.dll; \
rm -f libobjfwrt.${OBJFWRT_LIB_MAJOR}.dylib; \
exit $$EXIT
CPPFLAGS += -I../../src -I../../src/exceptions -I../../src/runtime -I../..
LIBS := -L../../src -L../../src/linklib ${OBJFW_LIBS} \
-L../../src/runtime -L../../src/runtime/linklib ${RUNTIME_LIBS} \
${LIBS}
LD = ${OBJC}
|