1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00

Use the $(LN_S) substitution for "ln -s" since configure tests for it.

This commit is contained in:
Thomas G. Lockhart
1998-10-07 06:50:37 +00:00
parent ed24461ca1
commit 7d4b59f024
4 changed files with 14 additions and 14 deletions

View File

@@ -49,7 +49,7 @@ all: libecpg.a $(shlib)
$(shlib): ecpglib.sho typename.sho
$(LD) $(LDFLAGS_SL) -o $@ ecpglib.sho typename.sho
ln -sf $@ libecpg.so
$(LN_S) -f $@ libecpg.so
clean:
rm -f *.o *.sho *.a core a.out *~ $(shlib) libecpg.so
@@ -61,7 +61,7 @@ install: libecpg.a $(shlib) $(install-shlib-dep)
install-shlib:
$(INSTALL) $(INSTLOPTS) $(shlib) $(LIBDIR)
ln -sf $(shlib) $(LIBDIR)/libecpg.so
$(LN_S) -f $(shlib) $(LIBDIR)/libecpg.so
uninstall::
rm -f $(LIBDIR)/libecpg.a $(LIBDIR)/$(shlib)