gno/lib/libutil/Makefile

30 lines
568 B
Makefile
Raw Normal View History

1997-02-28 05:03:52 +00:00
#
# This is the top-level makefile for libutil, GNO v2.0.6
#
# $Id: Makefile,v 1.3 1997/10/03 04:47:34 gdr Exp $
1997-02-28 05:03:52 +00:00
#
1997-09-21 05:59:14 +00:00
.INCLUDE: ../../paths.mk
.INCLUDE: ../const.mk
1997-02-28 05:03:52 +00:00
LIB = libutil
1997-09-21 05:59:14 +00:00
OBJS = login.o logintty.o logwtmp.o
LIBDIR = /usr/lib
1997-09-21 05:59:14 +00:00
CFLAGS += -O78
1997-02-28 05:03:52 +00:00
build: $(LIB)
$(LIB): $(OBJS) libutil.r
1997-02-28 05:03:52 +00:00
$(RM) -f $@
$(MAKELIB) $(MAKELIBFLAGS) -l $@ $(OBJS)
$(CATREZ) -d $@ libutil.r
install: $(LIB)
$(INSTALL) -d $(LIBDIR)
$(INSTALL) $(LIB) $(LIBDIR)
release: $(LIB)
$(INSTALL) -d $(RELEASE_DIR)$(LIBDIR)
$(INSTALL) $(LIB) $(RELEASE_DIR)$(LIBDIR)