Changeset 205
- Timestamp:
- 02/08/99 20:57:30 (10 years ago)
- Files:
-
- lm-sensors/trunk/Makefile (modified) (1 diff)
- lm-sensors/trunk/TODO (modified) (1 diff)
- lm-sensors/trunk/lib/Module.mk (modified) (2 diffs)
- lm-sensors/trunk/lib/libsensors.3 (added)
- lm-sensors/trunk/lib/sensors.conf.5 (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/Makefile
r180 r205 87 87 LIBINCLUDEDIR := $(INCLUDEDIR)/sensors 88 88 89 # You should not need to change this. It is the base directory under which the 90 # manual pages will be installed. 91 MANDIR := $(PREFIX)/man 92 93 # You should not need to change this. It defines the manual owner and group 94 # as which manual pages are installed. 95 MANOWN := root 96 MANGRP := root 97 89 98 # If your /bin/sh is not bash, change the below definition so that make can 90 99 # find bash. lm-sensors/trunk/TODO
r199 r205 1 1 Many, many things. Most notably: 2 2 3 * Change all copyrights to 1998,1999 3 4 * Check CDROM insert-remove error of Matt Mueller 4 5 * Create wait-queues for bus locking instead of pure semaphores, to make lm-sensors/trunk/lib/Module.mk
r184 r205 20 20 # verbatim in the rules, until it is redefined. 21 21 MODULE_DIR := lib 22 23 # The manual dirs and files 24 LIBMAN3DIR := $(MANDIR)/man3 25 LIBMAN3FILES := $(MODULE_DIR)/libsensors.3 26 LIBMAN5DIR := $(MANDIR)/man5 27 LIBMAN5FILES := $(MODULE_DIR)/sensors.conf.5 22 28 23 29 # The main and minor version of the library … … 78 84 79 85 install-lib: all-lib 80 $(MKDIR) $(LIBDIR) $(LIBINCLUDEDIR) 86 $(MKDIR) $(LIBDIR) $(LIBINCLUDEDIR) $(LIBMAN3DIR) $(LIBMAN5DIR) 81 87 $(INSTALL) -o root -g root -m 644 $(LIBTARGETS) $(LIBDIR) 82 88 $(LN) $(LIBSHLIBNAME) $(LIBDIR)/$(LIBSHSONAME) 83 89 $(LN) $(LIBSHSONAME) $(LIBDIR)/$(LIBSHBASENAME) 84 90 $(INSTALL) -o root -g root -m 644 $(LIBHEADERFILES) $(LIBINCLUDEDIR) 91 $(INSTALL) -o $(MANOWN) -g $(MANGRP) -m 644 $(LIBMAN3FILES) $(LIBMAN3DIR) 92 $(INSTALL) -o $(MANOWN) -g $(MANGRP) -m 644 $(LIBMAN5FILES) $(LIBMAN5DIR) 93 85 94 install :: install-lib 86 95
