Annotation of libaitwww/lib/Makefile.in, revision 1.1
1.1 ! misho 1: #
! 2: # (C) 2012 by Michael Pounov <misho@elwix.org>
! 3: # AITNET ltd - Sofia/Bulgaria
! 4: #
! 5: # $Author: misho $
! 6: # $Id: Makefile.in,v 1.4 2011/08/29 12:00:57 misho Exp $
! 7: #
! 8:
! 9: prefix = @prefix@
! 10: exec_prefix = @exec_prefix@
! 11: libdir = @libdir@
! 12:
! 13: INSTALL = @INSTALL@
! 14:
! 15: VERS = @PACKAGE_VERSION@
! 16: LIBSO = libaitwww.so
! 17: LIBA = libaitwww.a
! 18:
! 19: all:
! 20: @ln -sf ${LIBSO} ${LIBSO}.${VERS}
! 21:
! 22: depend:
! 23:
! 24: clean:
! 25: @rm -f ${LIBSO} ${LIBA} ${LIBSO}.${VERS} *~
! 26:
! 27: install:
! 28: ${INSTALL} ${LIBA} ${libdir}
! 29: ${INSTALL} ${LIBSO} ${libdir}
! 30: @ln -fs ${libdir}/${LIBSO} ${libdir}/${LIBSO}.${VERS}
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>