Makefile 817 B

12345678910111213141516171819202122
  1. # $MirOS: contrib/hosted/fwcf/mkfwcf/Makefile,v 1.14 2006/09/26 10:25:06 tg Exp $
  2. # This file is part of the FreeWRT project. FreeWRT is copyrighted
  3. # material, please see the LICENCE file in the top-level directory
  4. # or at http://www.freewrt.org/licence for details.
  5. PROG= mkfwcf
  6. SRCS= ${PROG}.c ${COMPRESSORS} sys_bsd.c
  7. NOMAN= yes
  8. DPADD+= ${LIBZ}
  9. LDADD+= -lz
  10. CLEANFILES+= ${.CURDIR}/test.out ${.CURDIR}/tesz.out ${.CURDIR}/tesL.out \
  11. ${.CURDIR}/test.nil ${.CURDIR}/tesz.nil ${.CURDIR}/tesL.nil
  12. test: ${PROG}
  13. ./${PROG} -o ${.CURDIR}/test.out ${.CURDIR}/CVS
  14. ./${PROG} -C 1 -o ${.CURDIR}/tesz.out ${.CURDIR}/CVS
  15. ./${PROG} -C 16 -o ${.CURDIR}/tesL.out ${.CURDIR}/CVS
  16. ./${PROG} -eo ${.CURDIR}/test.nil
  17. ./${PROG} -eC 1 -o ${.CURDIR}/tesz.nil
  18. ./${PROG} -eC 16 -o ${.CURDIR}/tesL.nil
  19. .include <bsd.prog.mk>