Changeset 4628
- Timestamp:
- 07/19/07 18:59:16 (6 years ago)
- Location:
- lm-sensors/branches/lm-sensors-3.0.0
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-3.0.0/CHANGES
r4604 r4628 16 16 Delete all remnants of algorithm names 17 17 Drop all the chip-specific support 18 Makefile: Drop the package and version targets 18 19 Man page sensors.conf.5: Update the chip statement section 19 20 Programs doc/*: Delete, obsolete -
lm-sensors/branches/lm-sensors-3.0.0/Makefile
r4601 r4628 30 30 # Uncomment the second line if you are a developer. This will enable many 31 31 # additional warnings at compile-time 32 WARN := 033 #WARN := 132 #WARN := 0 33 WARN := 1 34 34 35 35 # Uncomment the second line if you want to get (loads of) debug information … … 155 155 LIBCFLAGS := -fpic -D_REENTRANT $(ALL_CFLAGS) 156 156 157 .PHONY: all user clean install user_install uninstall user_uninstall package157 .PHONY: all user clean install user_install uninstall user_uninstall 158 158 159 159 # Make all the default rule … … 167 167 ifneq ($(MAKECMDGOALS),user_uninstall) 168 168 ifneq ($(MAKECMDGOALS),help) 169 ifneq ($(MAKECMDGOALS),package)170 ifneq ($(MAKECMDGOALS),userpackage)171 169 include $(INCLUDEFILES) 172 endif173 endif174 170 endif 175 171 endif … … 200 196 uninstall :: user_uninstall 201 197 202 # This is tricky, but it works like a charm. It needs lots of utilities203 # though: cut, find, gzip, ln, tail and tar.204 package: version.h clean205 lmversion=`tail -1 version.h|cut -f 2 -d \"`; \206 lmpackage=lm_sensors-$$lmversion; \207 ln -s . $$lmpackage; \208 find $$lmpackage/ -type f | grep -v ^$$lmpackage/$$lmpackage$$ | \209 grep -v ^$$lmpackage/$$lmpackage.tar$$ | \210 grep -v ^$$lmpackage/$$ | \211 grep -v /CVS | \212 grep -v /\\.# | \213 tar rvf $$lmpackage.tar -T -; \214 gzip -9 $$lmpackage.tar ;\215 $(RM) $$lmpackage.tar $$lmpackage216 cat doc/developers/checklist217 218 198 help: 219 199 @echo 'Make targets are:' … … 222 202 @echo ' uninstall: uninstall library and userspace programs' 223 203 @echo ' clean: cleanup' 224 @echo ' package: create a distribution package'225 204 226 205 # Generate html man pages to be copied to the lm_sensors website.
