23 lines
369 B
Makefile
23 lines
369 B
Makefile
#
|
|
# @(#)Makefile 1.1 94/10/31 SMI
|
|
#
|
|
# Copyright (c) 1987 by Sun Microsystems, Inc.
|
|
#
|
|
SRCS = gtty.c lockf.c pause.c stty.c tell.c ulimit.c utime.c
|
|
OBJS = $(SRCS:%.c=$(VARIANT)/%.o)
|
|
|
|
all: xall
|
|
include ../../Makefile.master
|
|
.KEEP_STATE:
|
|
|
|
xall: $$(LIBS)
|
|
|
|
$(LIBS) : symlink $$(VARIANT) $$(OBJS)
|
|
|
|
symlink:
|
|
rm -rf strings;\
|
|
ln -s ../../strings strings
|
|
|
|
clean: master.clean
|
|
|