Show
Ignore:
Timestamp:
03/18/99 16:12:01 (14 years ago)
Author:
frodo
Message:

Finished renaming of detect.pl

* Either Phil had not done a 'cvs update', or I forgot a 'cvs commit'; anyway,

the last changes to detect.pl have been ported to sensors-detect.

* Added a rule to the Makefile fragment to install it in $(SBINDIR).
* Added SBINDIR to the main Makefile.
* Deleted detect.pl

Files:
1 modified

Legend:

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

    r207 r323  
    2525PROGDETECTTARGETS := $(MODULE_DIR)/i2cdetect 
    2626PROGDETECTSOURCES := $(MODULE_DIR)/i2cdetect.c 
     27PROGDETECTSBININSTALL := $(MODULE_DIR)/sensors-detect 
    2728 
    2829# Include all dependency files. We use '.rd' to indicate this will create 
     
    3334all :: all-prog-detect 
    3435 
     36install-prog-detect: all-prog-detect 
     37        mkdir -p $(SBINDIR) 
     38        $(INSTALL) -o root -g root -m 755 $(PROGDETECTSBININSTALL) $(SBINDIR) 
     39install :: install-prog-detect 
     40 
    3541clean-prog-detect: 
    3642        $(RM) $(PROGDETECTSOURCES:.c=.rd) $(PROGDETECTSOURCES:.c=.ro) \