Changeset 5869
- Timestamp:
- 10/19/10 20:34:34 (3 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r5867 r5869 3 3 4 4 SVN HEAD 5 Makefile: Check for bison and flex 5 6 sensors-detect: Improve LM90 and W83L771 detection 6 7 -
lm-sensors/trunk/Makefile
r5760 r5869 267 267 268 268 # Flex and Bison 269 %c: %y 269 %.c: %.y 270 @if ! which $(BISON) 2> /dev/null ; then \ 271 echo "Please install $(BISON), then run \"make clean\" and try again" ; \ 272 false ; \ 273 fi 270 274 $(BISON) -p sensors_yy -d $< -o $@ 271 275 … … 277 281 278 282 %.c: %.l 283 @if ! which $(FLEX) 2> /dev/null ; then \ 284 echo "Please install $(FLEX), then run \"make clean\" and try again" ; \ 285 false ; \ 286 fi 279 287 $(FLEX) $(FLEX_FLAGS) $< > $@
