~cfuhrman/+junk/netbsd-othersrc-trunk

« back to all changes in this revision

Viewing changes to usr.bin/fsu_chflags/Makefile

  • Committer: stacktic
  • Date: 2009-03-23 21:04:00 UTC
  • Revision ID: svn-v4:288d5a72-fed7-e111-8680-000c29dcf8fe:trunk:1946
ImportedĀ fs-utilsĀ binaries

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#       $NetBSD: Makefile,v 1.14 2006/12/14 20:09:36 he Exp $
 
2
#       @(#)Makefile    8.1 (Berkeley) 6/2/93
 
3
 
 
4
 
 
5
PROG=           fsu_chflags
 
6
.PATH:          ../chflags
 
7
SRCS=           chflags.c
 
8
MAN=            fsu_chflags.1
 
9
 
 
10
DPADD+=         ${LIBUTIL}
 
11
CFLAGS+=        -Wl,--wrap=chflags,--wrap=lchflags
 
12
CPPFLAGS+=      -DUSE_UKFS -I../../lib/libfsu_utils -I../../lib/libfsu_mount
 
13
 
 
14
LDADD+=         -lutil -L../../lib/libfsu_utils -L../../lib/libfsu_mount \
 
15
                -lukfs -lrump -lrumpuser -lfsu_utils -lfsu_mount
 
16
 
 
17
.if exists(/usr/lib/librumpvfs.so)
 
18
LDADD+=         -lrumpvfs
 
19
.endif
 
20
 
 
21
.include <bsd.prog.mk>