Show
Ignore:
Timestamp:
12/01/98 22:11:32 (15 years ago)
Author:
frodo
Message:

Many things, most notable the lm78 module

* Some Makefile changes. doc/makefiles documents most of them.
* The lm78 module now compiles, but it will still crash.
* New module sensors, with general code usable by chip driver modules
* i2c-core: added function i2c_adapter_id(), which returns a (low)

unique i2c-bus ID.

* lm78.h stuff moved into lm78.c or sensors.h

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/i2c/Module.mk

    r11 r19  
    3030INCLUDEFILES += $(I2CTARGETS:.o=.d) 
    3131 
    32 all :: $(I2CTARGETS) 
     32all-i2c: $(I2CTARGETS) 
     33all :: all-i2c 
    3334 
    34 install ::  
     35install-i2c: 
    3536        $(MKDIR) $(MODDIR) 
    3637        install -o root -g root -m 644 $(I2CTARGETS) $(MODDIR) 
     38install :: install-i2c 
    3739 
    38 clean :: 
     40clean-i2c: 
    3941        $(RM) $(I2CTARGETS) $(I2CTARGETS:.o=.d) 
     42clean :: clean-i2c