diff options
author | peter <peter@FreeBSD.org> | 2002-08-31 23:30:16 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2002-08-31 23:30:16 +0000 |
commit | 6840044b4e1ceb6c45236c4eed4db70d431d2b7c (patch) | |
tree | dd486d015f62227e4a0fda2d11f134092216663d | |
parent | 31d77eaa65688fcc31c659dedc6ae8f15eaea793 (diff) | |
download | FreeBSD-src-6840044b4e1ceb6c45236c4eed4db70d431d2b7c.zip FreeBSD-src-6840044b4e1ceb6c45236c4eed4db70d431d2b7c.tar.gz |
'aicasm optional ahc ahd' means 'build aicasm only if BOTH ahc and ahd
are specified'. Ie: it is a logical and, not a logical or.
-rw-r--r-- | sys/conf/files | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/conf/files b/sys/conf/files index 2f86cec..ba608e9 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -4,7 +4,12 @@ # limitations in config: backslash-newline doesn't work in strings, and # dependency lines other than the first are silently ignored. # -aicasm optional ahc ahd \ +aicasm optional ahc \ + dependency "$S/dev/aic7xxx/aicasm/*.[chyl]" \ + compile-with "${MAKE} -f $S/dev/aic7xxx/aicasm/Makefile MAKESRCPATH=$S/dev/aic7xxx/aicasm" \ + no-obj no-implicit-rule \ + clean "aicasm* y.tab.h" +aicasm optional ahd \ dependency "$S/dev/aic7xxx/aicasm/*.[chyl]" \ compile-with "${MAKE} -f $S/dev/aic7xxx/aicasm/Makefile MAKESRCPATH=$S/dev/aic7xxx/aicasm" \ no-obj no-implicit-rule \ |