Files
Arquivotheca.Solaris-2.5/cmd/ipc/Makefile
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

38 lines
514 B
Makefile
Executable File

#
#ident "@(#)Makefile 1.10 92/12/15 SMI"
#
# Copyright (c) 1990 by Sun Microsystems, Inc.
#
# cmd/ipc/Makefile
#
include ../Makefile.cmd
IPCRM= ipcrm
IPCS= ipcs
PROG= $(IPCRM) $(IPCS)
SRCS= $(PROG:%=%.c)
CPPFLAGS += -D_KMEMUSER
LINTFLAGS = -x
ROOTIPCRM = $(IPCRM:%=$(ROOTBIN)/%)
ROOTIPCS = $(IPCS:%=$(ROOTBIN)/%)
LDLIBS += -lkvm -lelf
$(ROOTIPCS) := FILEMODE = 2555
$(ROOTIPCS) := GROUP = sys
.KEEP_STATE:
all: $(PROG)
install: all $(ROOTPROG)
clean:
lint: lint_SRCS
include ../Makefile.targ