Makefile (814aaaa7da4dab462d90e12e7b48b75f2093ccfd) | Makefile (b4b4b5304bd22eab265c9c049cb7fc6b55c4ef3f) |
---|---|
1# $FreeBSD$ 2 3.PATH: ${.CURDIR}/../../include 4 5LIB= egacy 6SRC= 7INCSGROUPS= INCS SYSINCS 8INCS= --- 27 unchanged lines hidden (view full) --- 36.endif 37 38_WITH_UTIMENS!= grep -c utimensat /usr/include/sys/stat.h || true 39.if ${_WITH_UTIMENS} == 0 40SYSINCS+= stat.h 41SRCS+= futimens.c utimensat.c 42.endif 43 | 1# $FreeBSD$ 2 3.PATH: ${.CURDIR}/../../include 4 5LIB= egacy 6SRC= 7INCSGROUPS= INCS SYSINCS 8INCS= --- 27 unchanged lines hidden (view full) --- 36.endif 37 38_WITH_UTIMENS!= grep -c utimensat /usr/include/sys/stat.h || true 39.if ${_WITH_UTIMENS} == 0 40SYSINCS+= stat.h 41SRCS+= futimens.c utimensat.c 42.endif 43 |
44.if !exists(/usr/include/capsicum_helpers.h) 45.PATH: ${.CURDIR}/../../lib/libcapsicum/ 46INCS+= capsicum_helpers.h 47.endif 48 | |
49.if empty(SRCS) 50SRCS= dummy.c 51.endif 52 53.if defined(CROSS_BUILD_TESTING) 54SUBDIR= cross-build 55.endif 56 57.include <bsd.lib.mk> | 44.if empty(SRCS) 45SRCS= dummy.c 46.endif 47 48.if defined(CROSS_BUILD_TESTING) 49SUBDIR= cross-build 50.endif 51 52.include <bsd.lib.mk> |