mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-04-06 12:37:56 +00:00
replaced with a GNO-style makefile
This commit is contained in:
parent
a669d1f0ac
commit
cbf28ecef3
@ -1,6 +1,29 @@
|
||||
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
||||
#
|
||||
# This is the top-level makefile for libutil, GNO v2.0.6
|
||||
#
|
||||
# $Id: Makefile,v 1.2 1997/10/03 04:46:02 gdr Exp $
|
||||
#
|
||||
|
||||
LIB= y
|
||||
SRCS= main.c yyerror.c
|
||||
.INCLUDE: ../../paths.mk
|
||||
.INCLUDE: ../const.mk
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
LIB = liby
|
||||
OBJS = main.o yyerror.o
|
||||
LIBDIR = /usr/lib
|
||||
|
||||
CFLAGS += -O78
|
||||
|
||||
build: $(LIB)
|
||||
|
||||
$(LIB): $(OBJS) liby.r
|
||||
$(RM) -f $@
|
||||
$(MAKELIB) $(MAKELIBFLAGS) -l $@ $(OBJS)
|
||||
$(CATREZ) -d $@ liby.r
|
||||
|
||||
install: $(LIB)
|
||||
$(INSTALL) -d $(LIBDIR)
|
||||
$(INSTALL) $(LIB) $(LIBDIR)
|
||||
|
||||
release: $(LIB)
|
||||
$(INSTALL) -d $(RELEASE_DIR)$(LIBDIR)
|
||||
$(INSTALL) $(LIB) $(RELEASE_DIR)$(LIBDIR)
|
||||
|
Loading…
x
Reference in New Issue
Block a user