34 lines
441 B
Makefile
Executable File
34 lines
441 B
Makefile
Executable File
# Copyright (c) 1991 by Sun Microsystems, Inc.
|
|
#
|
|
#ident "@(#)Makefile 1.9 94/06/08 SMI"
|
|
#
|
|
# cmd/fdformat/Makefile
|
|
#
|
|
|
|
PROG= fdformat
|
|
|
|
include ../Makefile.cmd
|
|
|
|
LDLIBS += -lvolmgt -lintl
|
|
|
|
.KEEP_STATE:
|
|
|
|
#
|
|
# set-uid root program.
|
|
#
|
|
$(ROOTPROG) := FILEMODE = 04555
|
|
$(ROOTPROG) := OWNER = root
|
|
|
|
all: $(PROG)
|
|
|
|
fdformat: fdformat.c
|
|
$(LINK.c) -o $@ ./fdformat.c $(LDLIBS)
|
|
|
|
install: all $(ROOTPROG)
|
|
|
|
clean:
|
|
|
|
lint: lint_PROG
|
|
|
|
include ../Makefile.targ
|