diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-08-26 18:34:24 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2024-08-26 18:34:24 +0300 |
| commit | eff7f52c368df5dc662d54956de5aa3b2b9ee936 (patch) | |
| tree | f3ba4e898e3aea5377e0227442044c9bf296d45f /tests/scripts/gen-prog | |
| parent | a9d61501eb0200576bb08ba4b287f66177253ad9 (diff) | |
| download | kmi-eff7f52c368df5dc662d54956de5aa3b2b9ee936.tar.gz kmi-eff7f52c368df5dc662d54956de5aa3b2b9ee936.zip | |
simplify tests
Diffstat (limited to 'tests/scripts/gen-prog')
| -rwxr-xr-x | tests/scripts/gen-prog | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/scripts/gen-prog b/tests/scripts/gen-prog index e56ecc3..6e99f37 100755 --- a/tests/scripts/gen-prog +++ b/tests/scripts/gen-prog @@ -23,12 +23,10 @@ do echo "${NAME}_OBJS += ${obj}" >> tests.mk echo "${dep}:" >> tests.mk echo "-include ${dep}" >> tests.mk - echo "${obj}: $NAME/${s}" >> tests.mk + echo "${obj}: $NAME/${s} \$(COMMON)" >> tests.mk echo " \$(COMPILE_TEST) -c $NAME/${s} -o ${obj}" >> tests.mk done echo "build/${NAME}/$PROG: \$(${NAME}_OBJS) \$(COMMON)" >> tests.mk echo " \$(COMPILE_TEST) \$(${NAME}_OBJS) \$(COMMON) \ -o build/${NAME}/$PROG" >> tests.mk - -echo "include ${NAME}/check.mk" >> tests.mk |
