diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2000-01-14 09:28:25 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-01-14 09:28:25 +0000 |
| commit | b243983f3241178ecc6be5dce90c27275d88cd38 (patch) | |
| tree | 89996f0fb7209a2a194dab6b78a13c40c6ed04be /gnu | |
| parent | 570080640e94beeae38462564bb2ad0677efd3da (diff) | |
Notes
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/cc/f771/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/f771/Makefile b/gnu/usr.bin/cc/f771/Makefile index fb242b10db73..f0e3352e72c2 100644 --- a/gnu/usr.bin/cc/f771/Makefile +++ b/gnu/usr.bin/cc/f771/Makefile @@ -19,10 +19,15 @@ LDADD= ${LIBCC_INT} build-tools: fini -fini: fini.o proj.o +# The use of ``proj-BT.o'' is to get around bogus dependacy information +# created for build-tools sources. +fini: fini.o proj-BT.o ${CC} -static ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC} -CLEANFILES+= fini +proj-BT.o: proj.c + ${CC} ${CFLAGS} -o ${.TARGET} -c ${.ALLSRC} + +CLEANFILES+= fini fini.o proj-BT.o #----------------------------------------------------------------------- # str-* gunk |
