diff options
author | obrien <obrien@FreeBSD.org> | 2004-09-09 20:47:58 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-09-09 20:47:58 +0000 |
commit | 3d2cd03af248aef5e70fccafaa9d1819811b4182 (patch) | |
tree | d29cc9bf1d263af2d6b2f906ef287b6453b05819 /gnu | |
parent | 4c20551f649ebf1cfd04aa6e91891cbfdcb50dbc (diff) | |
download | FreeBSD-src-3d2cd03af248aef5e70fccafaa9d1819811b4182.zip FreeBSD-src-3d2cd03af248aef5e70fccafaa9d1819811b4182.tar.gz |
Add the .h files to the .o dependency lists so the .h's are created before
trying to build the .o's.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/csu/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/csu/Makefile b/gnu/lib/csu/Makefile index 14be4c1..8506ded 100644 --- a/gnu/lib/csu/Makefile +++ b/gnu/lib/csu/Makefile @@ -34,8 +34,8 @@ SRCS+= crtsavres.asm TGTOBJS= crtfastmath.o SRCS+= crtfastmath.c .endif -BEGINSRC?= crtstuff.c -ENDSRC?= crtstuff.c +BEGINSRC?= ${SRCS} +ENDSRC?= ${SRCS} all: ${OBJS} ${SOBJS} ${TGTOBJS} ${OBJS} ${SOBJS}: tm.h |