Makefile (38c0ca1481ac10422d20aa985735e44aa87fc0b5) | Makefile (066a8c691e6751e281e529938c620f183299229a) |
---|---|
1#- 2# Copyright (c) 2011 Google, Inc. 3# All rights reserved. 4# 5# Redistribution and use in source and binary forms, with or without 6# modification, are permitted provided that the following conditions 7# are met: 8# 1. Redistributions of source code must retain the above copyright --- 17 unchanged lines hidden (view full) --- 26# $FreeBSD$ 27 28.include <src.opts.mk> 29.include <bsd.init.mk> 30 31ATF= ${SRCTOP}/contrib/atf 32.PATH: ${ATF}/atf-sh 33 | 1#- 2# Copyright (c) 2011 Google, Inc. 3# All rights reserved. 4# 5# Redistribution and use in source and binary forms, with or without 6# modification, are permitted provided that the following conditions 7# are met: 8# 1. Redistributions of source code must retain the above copyright --- 17 unchanged lines hidden (view full) --- 26# $FreeBSD$ 27 28.include <src.opts.mk> 29.include <bsd.init.mk> 30 31ATF= ${SRCTOP}/contrib/atf 32.PATH: ${ATF}/atf-sh 33 |
34PACKAGE= tests |
|
34PROG_CXX= atf-check 35SRCS= atf-check.cpp 36MAN= atf-check.1 37 38CFLAGS+= -I${ATF} 39CFLAGS+= -DATF_SHELL='"/bin/sh"' 40 41# Silence warnings about usage of deprecated std::auto_ptr 42CXXWARNFLAGS+= -Wno-deprecated-declarations 43 44LIBADD= atf_cxx 45 46HAS_TESTS= 47SUBDIR.${MK_TESTS}+= tests 48 49.include <bsd.prog.mk> | 35PROG_CXX= atf-check 36SRCS= atf-check.cpp 37MAN= atf-check.1 38 39CFLAGS+= -I${ATF} 40CFLAGS+= -DATF_SHELL='"/bin/sh"' 41 42# Silence warnings about usage of deprecated std::auto_ptr 43CXXWARNFLAGS+= -Wno-deprecated-declarations 44 45LIBADD= atf_cxx 46 47HAS_TESTS= 48SUBDIR.${MK_TESTS}+= tests 49 50.include <bsd.prog.mk> |