Makefile 487 B

123456789101112131415161718192021222324252627
  1. # $OpenBSD: Makefile,v 1.2 2019/08/22 21:47:27 bluhm Exp $
  2. PROG=test_misc
  3. SRCS=tests.c
  4. # From usr.bin/ssh/Makefile.inc
  5. SRCS+= sshbuf.c
  6. SRCS+= sshbuf-getput-basic.c
  7. SRCS+= sshbuf-misc.c
  8. SRCS+= ssherr.c
  9. SRCS+= log.c
  10. SRCS+= xmalloc.c
  11. SRCS+= misc.c
  12. SRCS+= match.c
  13. SRCS+= addr.c
  14. SRCS+= addrmatch.c
  15. # From usr.bin/ssh/sshd/Makefile
  16. SRCS+= atomicio.c cleanup.c fatal.c
  17. REGRESS_TARGETS=run-regress-${PROG}
  18. run-regress-${PROG}: ${PROG}
  19. env ${TEST_ENV} ./${PROG}
  20. .include <bsd.regress.mk>