36 lines
496 B
Makefile
Executable File
36 lines
496 B
Makefile
Executable File
#
|
|
#ident "@(#)Makefile 1.4 90/01/25 SMI"
|
|
#
|
|
# Copyright (c) 1989 by Sun Microsystems, Inc.
|
|
#
|
|
#
|
|
LIBS= a.a
|
|
|
|
OBJS= pnpsplit.o copyn.o devtolin.o expand.o lintodev.o \
|
|
namtouid.o tmless.o tmsecs.o uidtonam.o substr.o
|
|
SRCS= $(OBJS:%.o=%.c)
|
|
|
|
include ../../Makefile.cmd
|
|
|
|
CPPFLAGS = -D_LTYPES -I.. $(CPPFLAGS.master)
|
|
|
|
.KEEP_STATE:
|
|
|
|
all: $(LIBS)
|
|
|
|
$(LIBS): $(OBJS)
|
|
$(AR) $(ARFLAGS) $@ $(OBJS)
|
|
|
|
clean:
|
|
$(RM) $(OBJS)
|
|
|
|
clobber: clean
|
|
$(RM) $(LIBS)
|
|
|
|
lint:
|
|
$(LINT.c) $(SRCS)
|
|
|
|
install:
|
|
|
|
.PRECIOUS: $(LIBS)
|