mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Only compile with strtofflags.c from libc if bootstrapping.
This commit is contained in:
parent
2d742f7bbc
commit
4c47cadb49
1 changed files with 6 additions and 4 deletions
|
|
@ -1,14 +1,16 @@
|
|||
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
||||
# $FreeBSD$
|
||||
|
||||
.PATH: ${.CURDIR}/../../usr.bin/cksum ${.CURDIR}/../../lib/libc/gen
|
||||
.PATH: ${.CURDIR}/../../usr.bin/cksum
|
||||
|
||||
PROG= mtree
|
||||
MAN= mtree.8
|
||||
SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c \
|
||||
strtofflags.c
|
||||
SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c
|
||||
|
||||
.if !defined(BOOTSTRAPPING)
|
||||
.if defined(BOOTSTRAPPING)
|
||||
.PATH: ${.CURDIR}/../../lib/libc/gen
|
||||
SRCS+= strtofflags.c
|
||||
.else
|
||||
CFLAGS+= -DMD5 -DSHA1 -DRMD160
|
||||
DPADD= ${LIBMD}
|
||||
LDADD= -lmd
|
||||
|
|
|
|||
Loading…
Reference in a new issue