Use ${.ALLSRC} in Makefile so that it is a better candidate for copying.

Also allows the soruce to live somewhere else.
This commit is contained in:
David E. O'Brien 2000-04-19 23:45:43 +00:00
parent 15ee5562d6
commit d497785133
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=59406
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ INTERNALLIB= true
all: ${OBJS} ${SOBJS}
gcrt1.o: crt1.c
${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c
${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC}
realinstall:
.for file in ${OBJS} ${SOBJS}

View File

@ -15,7 +15,7 @@ INTERNALLIB= true
all: ${OBJS} ${SOBJS}
gcrt1.o: crt1.c
${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.CURDIR}/crt1.c
${CC} ${CFLAGS} -DGCRT -c -o gcrt1.o ${.ALLSRC}
realinstall:
.for file in ${OBJS} ${SOBJS}