1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-15 15:06:42 +00:00

Document why there is a dependency of certain object files from the

Makefile.

Requested by:	ru
This commit is contained in:
Hartmut Brandt 2005-05-25 08:46:31 +00:00
parent 522c85f5ba
commit 691a610b4d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=146608

View File

@ -20,6 +20,12 @@ CFLAGS+=-D__FBSDID=__RCSID
# There is no obvious performance improvement currently.
# CFLAGS+=-DUSE_KQUEUE
# Make object files which depend on preprocessor symbols defined in
# the Makefile which are not compilation options but rather configuration
# options dependend on the Makefile. main.c needs MAKE_VERSION while
# shell.c uses DEFSHELLNAME. This will cause recompilation in the case
# the definition is changed in the makefile. It will of course not cause
# recompilation if one does 'make MAKE_SHELL=csh'.
main.o shell.o: ${MAKEFILE}
# Directive and keyword tables. We use hash tables. These hash tables have been