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

32 lines
409 B
Makefile
Executable File

#
#ident "@(#)Makefile 1.11 95/02/21 SMI"
#
# Copyright (c) 1989, 1994 by Sun Microsystems, Inc.
#
PROG= renice
include ../Makefile.cmd
SRCS= setpriority.c renice.c
OBJS= setpriority.o renice.o
LDLIBS += -lintl
CFLAGS += -v
.KEEP_STATE:
all: $(PROG)
$(PROG): $(OBJS)
$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
install: all $(ROOTPROG)
clean:
$(RM) $(OBJS) $(PROG)
lint: lint_SRCS
include ../Makefile.targ