Files
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

30 lines
313 B
Makefile

#
# @(#)Makefile 1.1 10/31/94 Copyright Sun Microsystems Inc.
#
OS=SVR4
#specify "OS=" for 4.x build
SRC = ucblib.c
OBJ = $(SRC:.c=.o)
UCBLIB = libucb.a
CFLAGS = -D$(OS)
.KEEP_STATE:
all: $(UCBLIB)
$(UCBLIB): $(OBJ)
ar cru $(UCBLIB) $(OBJ)
clean: FRC
rm -f $(UCBLIB) $(OBJ)
info: FRC
sccs info
FRC: