diff options
author | Anna “CyberTailor” <cyber@sysrq.in> | 2021-07-08 19:05:04 +0500 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-07-08 16:55:08 +0200 |
commit | 9797799ad4634887fa825388c9c1efe0be11f903 (patch) | |
tree | e02e3c415028f46ae89e49e10b78c3136ffa3135 | |
parent | 2e2e189b016fe981fcb32e2c461a7c385cb25942 (diff) |
regress/Makefile: add missing LDFLAGS
-rw-r--r-- | regress/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/Makefile b/regress/Makefile index 36d910f..e1031aa 100644 --- a/regress/Makefile +++ b/regress/Makefile @@ -17,10 +17,10 @@ puny-test: 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 ${COMPAT} - ${CC} iri_test.o ../iri.o ../utf8.o ${COMPAT} -o iri_test + ${CC} iri_test.o ../iri.o ../utf8.o ${COMPAT} -o $@ ${LDFLAGS} fill-file: fill-file.o - ${CC} fill-file.o -o fill-file + ${CC} fill-file.o -o $@ ${LDFLAGS} fcgi-test: fcgi-test.o ${CC} fcgi-test.o ${COMPAT} -o fcgi-test ${LDFLAGS} |