cat ${.ALLSRC} > ${.TARGET}
rather than
	ln -sf ${.ALLSRC} ${.TARGET}
not to depends on absolute-path of symbolic links.

Commented by:  marcel, obrien, bde
This commit is contained in:
Jun Kuriyama 2003-06-06 13:46:55 +00:00
parent c2762004a6
commit 3a624f5e23
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115898
13 changed files with 13 additions and 13 deletions

View File

@ -73,7 +73,7 @@ NLSSRCFILES_${catalog:C/.*://}!= cd ${NLSSRCDIR_${catalog:C/.*://}}; echo set[0-
.endfor
csh.1: tcsh.man
ln -sf ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
build-tools: gethost

View File

@ -17,6 +17,6 @@ LDADD+= ${LIBCC_INT}
CLEANFILES= cpp.1
cpp.1: cccp.1
ln -sf ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
.include <bsd.prog.mk>

View File

@ -18,6 +18,6 @@ LDADD= ${LIBCC_INT}
CLEANFILES= f77.1
f77.1: g77.1
ln -sf ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
.include <bsd.prog.mk>

View File

@ -45,7 +45,7 @@ MANx= form.3x form_cursor.3x form_data.3x form_driver.3x \
CLEANFILES+=${page:T:S/x$//g}
MAN+=${page:T:S/x$//g}
${page:T:S/x$//g}: ${page}
ln -s ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
.endfor
MLINKS+=form_cursor.3 pos_form_cursor.3

View File

@ -42,7 +42,7 @@ MANx= menu.3x menu_attributes.3x menu_cursor.3x \
CLEANFILES+=${page:T:S/x$//g}
MAN+=${page:T:S/x$//g}
${page:T:S/x$//g}: ${page}
ln -s ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
.endfor
MLINKS+=menu_attributes.3 menu_back.3 menu_attributes.3 menu_fore.3 \

View File

@ -410,7 +410,7 @@ MAN+= term.7
CLEANFILES+=${page:T:S/x$//g}
MAN+=${page:T:S/x$//g}
${page:T:S/x$//g}: ${page}
ln -sf ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
.endfor
MLINKS+=ncurses.3 curses.3

View File

@ -32,7 +32,7 @@ ncurses_def.h: MKncurses_def.sh ncurses_defs
CLEANFILES+= panel.3
MAN= panel.3
panel.3: panel.3x
ln -s ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
MLINKS+=panel.3 bottom_panel.3 panel.3 del_panel.3 panel.3 hide_panel.3 \
panel.3 move_panel.3 panel.3 new_panel.3 panel.3 panel_above.3 \

View File

@ -45,7 +45,7 @@ MANx= form.3x form_cursor.3x form_data.3x form_driver.3x \
CLEANFILES+=${page:T:S/x$//g}
MAN+=${page:T:S/x$//g}
${page:T:S/x$//g}: ${page}
ln -s ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
.endfor
MLINKS+=form_cursor.3 pos_form_cursor.3

View File

@ -42,7 +42,7 @@ MANx= menu.3x menu_attributes.3x menu_cursor.3x \
CLEANFILES+=${page:T:S/x$//g}
MAN+=${page:T:S/x$//g}
${page:T:S/x$//g}: ${page}
ln -s ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
.endfor
MLINKS+=menu_attributes.3 menu_back.3 menu_attributes.3 menu_fore.3 \

View File

@ -410,7 +410,7 @@ MAN+= term.7
CLEANFILES+=${page:T:S/x$//g}
MAN+=${page:T:S/x$//g}
${page:T:S/x$//g}: ${page}
ln -sf ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
.endfor
MLINKS+=ncurses.3 curses.3

View File

@ -32,7 +32,7 @@ ncurses_def.h: MKncurses_def.sh ncurses_defs
CLEANFILES+= panel.3
MAN= panel.3
panel.3: panel.3x
ln -s ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
MLINKS+=panel.3 bottom_panel.3 panel.3 del_panel.3 panel.3 hide_panel.3 \
panel.3 move_panel.3 panel.3 new_panel.3 panel.3 panel_above.3 \

View File

@ -27,6 +27,6 @@ maketab: ytab.h ${AWKSRC}/maketab.c
CLEANFILES+= nawk.1
nawk.1: awk.1
ln -sf ${.ALLSRC} ${.TARGET}
cat ${.ALLSRC} > ${.TARGET}
.include <bsd.prog.mk>

View File

@ -8,4 +8,4 @@ CFLAGS+=-I${.CURDIR}/../less -I${LSDIR}
.SUFFIXES: .nro .1
.nro.1:
ln -s ${.IMPSRC} ${.TARGET}
cat ${.IMPSRC} > ${.TARGET}