Unbreak build-tools -- build and use up-to-date ${HEADERS}.

These might not be present in /usr/include, or they may be
incompatible with the version we are building (for library
upgrades/downgrades).

This stopped the RELENG_4 buildworld on a -CURRENT box.
Well, this only fixes the issue if MFC'ed.  :-)
This commit is contained in:
Ruslan Ermilov 2001-09-14 15:27:51 +00:00
parent 4bf12cb91e
commit c31acb7944
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=83453
2 changed files with 4 additions and 4 deletions

View File

@ -329,10 +329,10 @@ term.h: MKterm.h.awk edit_cfg.sh Caps
# Build tools
build-tools: make_hash make_keys
make_keys: make_keys.c names.c curses.h ncurses_def.h
make_keys: make_keys.c names.c ncurses_def.h ${HEADERS}
${CC} -o $@ ${CFLAGS} ${NCURSES}/ncurses/tinfo/make_keys.c
make_hash: comp_hash.c hashsize.h curses.h ncurses_def.h
make_hash: comp_hash.c hashsize.h ncurses_def.h ${HEADERS}
${CC} -o $@ ${CFLAGS} -DMAIN_PROGRAM \
${NCURSES}/ncurses/tinfo/comp_hash.c

View File

@ -329,10 +329,10 @@ term.h: MKterm.h.awk edit_cfg.sh Caps
# Build tools
build-tools: make_hash make_keys
make_keys: make_keys.c names.c curses.h ncurses_def.h
make_keys: make_keys.c names.c ncurses_def.h ${HEADERS}
${CC} -o $@ ${CFLAGS} ${NCURSES}/ncurses/tinfo/make_keys.c
make_hash: comp_hash.c hashsize.h curses.h ncurses_def.h
make_hash: comp_hash.c hashsize.h ncurses_def.h ${HEADERS}
${CC} -o $@ ${CFLAGS} -DMAIN_PROGRAM \
${NCURSES}/ncurses/tinfo/comp_hash.c