Changeset 2049
- Timestamp:
- 11/09/03 04:00:31 (5 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r2048 r2049 22 22 Add w83627thf support; Advance version to 2.0.2; 23 23 Add hermes, ADM1032, ASB100 support 24 Makefiles: Install fancontrol, pwmconfig, decode-*.pl 24 Makefiles: Install fancontrol, pwmconfig, decode-*.pl; 25 Fail if no kernel .config file exists 25 26 Module asb100: New 26 27 Module bmcsensors: Fix voltage scaling, voltage and fan limits lm-sensors/trunk/Makefile
r2026 r2049 304 304 @echo 'Note: make dep is automatic' 305 305 306 $(LINUX)/.config: 307 @echo "Error - missing file $(LINUX)/.config !! " 308 @echo " Verify kernel source is in $(LINUX) and then" 309 @echo " cd to $(LINUX) and run 'make config' !!" 310 @exit 1 311 306 312 # Here, we define all implicit rules we want to use. 307 313 … … 312 318 313 319 # .o files are used for modules 314 %.o: %.c 320 # depend on the kernel config file! 321 %.o: %.c $(LINUX)/.config 315 322 $(CC) $(MODCPPFLAGS) $(MODCFLAGS) -c $< -o $@ 316 323
