Changeset 99
- Timestamp:
- 12/21/98 17:49:11 (10 years ago)
- Files:
-
- lm-sensors/trunk/Makefile (modified) (1 diff)
- lm-sensors/trunk/lib/Module.mk (modified) (2 diffs)
- lm-sensors/trunk/lib/data.h (modified) (1 diff)
- lm-sensors/trunk/prog/sensors (added)
- lm-sensors/trunk/prog/sensors/Module.mk (added)
- lm-sensors/trunk/prog/sensors/main.c (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/Makefile
r92 r99 96 96 97 97 # The subdirectories we need to build things in 98 SRCDIRS := src lib 98 SRCDIRS := src lib prog/sensors 99 99 ifeq ($(I2C),1) 100 100 SRCDIRS += i2c i2c/detect i2c/drivers i2c/eeprom lm-sensors/trunk/lib/Module.mk
r97 r99 33 33 LIBSHSONAME := libsensors.so.$(LIBMAINVER) 34 34 35 LIBTARGETS := $(MODULE_DIR)/$(LIBSTLIBNAME) $(MODULE_DIR)/$(LIBSHLIBNAME) 35 LIBTARGETS := $(MODULE_DIR)/$(LIBSTLIBNAME) $(MODULE_DIR)/$(LIBSHLIBNAME) \ 36 $(MODULE_DIR)/$(LIBSHSONAME) $(MODULE_DIR)/$(LIBSHBASENAME) 36 37 37 38 LIBCSOURCES := $(MODULE_DIR)/data.c $(MODULE_DIR)/general.c \ … … 49 50 $(MODULE_DIR)/$(LIBSHLIBNAME): $(LIBSHOBJECTS) 50 51 $(CC) -shared -Wl,-soname,$(LIBSHSONAME) -o $@ $^ -lc 52 53 $(MODULE_DIR)/$(LIBSHSONAME): $(MODULE_DIR)/$(LIBSHLIBNAME) 54 $(RM) $@ 55 $(LN) $(LIBSHLIBNAME) $@ 56 57 $(MODULE_DIR)/$(LIBSHBASENAME): $(MODULE_DIR)/$(LIBSHLIBNAME) 58 $(RM) $@ 59 $(LN) $(LIBSHLIBNAME) $@ 51 60 52 61 # And the static library lm-sensors/trunk/lib/data.h
r98 r99 24 24 25 25 /* This header file contains all kinds of data structures which are used 26 for the representation of the config file data and the /proc/... /chips26 for the representation of the config file data and the /proc/... 27 27 data. */ 28 28
