diff options
author | Omar Polo <op@omarpolo.com> | 2021-02-10 22:06:16 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-02-10 22:06:16 +0000 |
commit | 4ad0601d1857e509687d2466ffa0afaf3a82578c (patch) | |
tree | 8bdbfcd168a1ddcad470c0074a2b83399549773a /regress | |
parent | 6827d2781e8aaaa6aad1e32026a21863070c90f4 (diff) |
link to compat/ even in regress
this unlocks the full regress tests on arch, for instance, or every
OS where we don't have strl*
Diffstat (limited to 'regress')
-rw-r--r-- | regress/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/regress/Makefile b/regress/Makefile index fc0d87c..0098885 100644 --- a/regress/Makefile +++ b/regress/Makefile @@ -7,11 +7,12 @@ all: puny-test testdata iri_test cert.pem testca.pem valid.crt invalid.cert.pem ./runtime ./iri_test -puny-test: puny-test.o ../puny.o ../utf8.o ../utils.o ../log.o - ${CC} puny-test.o ../puny.o ../utf8.o ../utils.o ../log.o -o puny-test ${LDFLAGS} +puny-test: puny-test.o ../puny.o ../utf8.o ../utils.o ../log.o ${COMPAT} + ${CC} puny-test.o ../puny.o ../utf8.o ../utils.o ../log.o ${COMPAT} \ + -o puny-test ${LDFLAGS} -iri_test: iri_test.o ../iri.o ../utf8.o - ${CC} iri_test.o ../iri.o ../utf8.o -o iri_test +iri_test: iri_test.o ../iri.o ../utf8.o ${COMPAT} + ${CC} iri_test.o ../iri.o ../utf8.o ${COMPAT} -o iri_test fill-file: fill-file.o ${CC} fill-file.o -o fill-file |