Changeset 5869 for lm-sensors/trunk/Makefile
- Timestamp:
- 10/19/10 20:34:34 (3 years ago)
- Files:
-
- 1 modified
-
lm-sensors/trunk/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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) $< > $@
