Skip to content

Commit

Permalink
Make "make tagall" work from subdirectory.
Browse files Browse the repository at this point in the history
  • Loading branch information
gwsw committed Jan 21, 1996
1 parent acf9bc1 commit c3367fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ lesskey.man: lesskey.nro

dist: ${DISTFILES}
if [ ! -d release ]; then mkdir release; fi
@REL=`sed -e '/char version/!d' -e 's/[^0-9.]*\([0-9.]*\).*/less-\1/' -e q version.c`; \
@REL=`sed -e '/char version/!d' -e 's/[^0-9.]*\([0-9.]*\).*/less-\1/' -e q ${srcdir}/version.c`; \
rm -rf release/$$REL; mkdir release/$$REL; \
echo "Creating release/$$REL/$$REL.tar.gz"; \
rm -rf $$REL; mkdir $$REL; \
Expand All @@ -164,6 +164,6 @@ dist: ${DISTFILES}
rm -rf $$REL

tagall:
@REL=`sed -e '/char version/!d' -e 's/[^0-9.]*\([0-9.]*\).*/v\1/' -e q version.c`; \
@REL=`sed -e '/char version/!d' -e 's/[^0-9.]*\([0-9.]*\).*/v\1/' -e q ${srcdir}/version.c`; \
echo "tagging $$REL"; \
$(RCS) -N$$REL: RCS/*,v
$(RCS) -N$$REL: ${srcdir}/RCS/*,v

0 comments on commit c3367fd

Please sign in to comment.