*** empty log message ***
This commit is contained in:
parent
1f30a16c07
commit
ac54f7bf2c
|
@ -3,6 +3,8 @@ VPATH = @srcdir@
|
||||||
CC = @CC@
|
CC = @CC@
|
||||||
CFLAGS1 = @CFLAGS1@
|
CFLAGS1 = @CFLAGS1@
|
||||||
|
|
||||||
|
RANLIB = @RANLIB@
|
||||||
|
|
||||||
# Things you might want to put in ENV and LENV:
|
# Things you might want to put in ENV and LENV:
|
||||||
# -Dvoid=int compilers that don't do void
|
# -Dvoid=int compilers that don't do void
|
||||||
# -DCHARBITS=0377 compilers that don't do unsigned char
|
# -DCHARBITS=0377 compilers that don't do unsigned char
|
||||||
|
@ -42,15 +44,16 @@ DTR=README dMakefile regexp.3 regexp.h regexp.c regsub.c regerror.c \
|
||||||
regmagic.h try.c timer.c tests
|
regmagic.h try.c timer.c tests
|
||||||
DEST = ..
|
DEST = ..
|
||||||
|
|
||||||
all: libregexp.a # try
|
# we don't use the library anymore -bri
|
||||||
|
all: $(LIBOBJ) # libregexp.a try
|
||||||
|
|
||||||
libregexp.a: $(LIBOBJ)
|
libregexp.a: $(LIBOBJ)
|
||||||
ar r libregexp.a $(LIBOBJ)
|
ar r libregexp.a $(LIBOBJ)
|
||||||
-ranlib libregexp.a
|
$(RANLIB) libregexp.a
|
||||||
|
|
||||||
install:
|
install:
|
||||||
install -c libregexp.a $(LIBDEST)/libregexp.a
|
install -c libregexp.a $(LIBDEST)/libregexp.a
|
||||||
-ranlib $(LIBDEST)/libregexp.a
|
$(RANLIB) $(LIBDEST)/libregexp.a
|
||||||
install -c regexp.h $(INCDEST)/regexp.h
|
install -c regexp.h $(INCDEST)/regexp.h
|
||||||
install -c regexp.3 $(MANDEST)/regexp.3
|
install -c regexp.3 $(MANDEST)/regexp.3
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue