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

30 lines
366 B
Makefile
Executable File

#
#ident "@(#)Makefile 1.7 94/03/30 SMI"
#
# Copyright (c) 1989 by Sun Microsystems, Inc.
#
PROG= fmtmsg
OBJS= main.o
SRCS= $(OBJS:%.o=%.c)
include ../Makefile.cmd
.KEEP_STATE:
all: $(PROG)
$(PROG): $(OBJS)
$(LINK.c) $(OBJS) -o $@ $(LDLIBS)
$(POST_PROCESS)
install: all $(ROOTPROG)
clean:
$(RM) $(OBJS)
lint:
$(LINT.c) $(SRCS)
include ../Makefile.targ