File: Makefile_common

package info (click to toggle)
thinkpad 5.8-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 604 kB
  • ctags: 1,459
  • sloc: ansic: 5,985; makefile: 226; sh: 179; asm: 44; sed: 22
file content (24 lines) | stat: -rw-r--r-- 507 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

VER_TPCTL=1.0
VER_SMAPIDEV=1.0

CC=gcc

DIR_KERNEL=/usr/src/linux
DIR_MOD=/lib/modules
DIR_MOD_VER=$(DIR_MOD)/$(shell uname -r)
DIR_LIB=/usr/lib
DIR_BIN=/usr/bin
DIR_SBIN=/usr/sbin
DIR_MAN=/usr/man
DIR_MODUTILS=/sbin

listpaths:
	echo "DIR_MOD_VER: $(DIR_MOD_VER)"
	echo "DIR_LIB: $(DIR_LIB)"
	echo "DIR_BIN: $(DIR_BIN)"
	echo "DIR_SBIN: $(DIR_SBIN)"
	echo "DIR_MAN: $(DIR_MAN)"
	echo "To make this package: make all"
	echo "To install binaries: make install"
	echo "To uninstall binaries: make uninstall"