30 lines
366 B
Makefile
Executable File
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
|