File: Makefile

package info (click to toggle)
lsb-appchk3 3.2.2-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 157,336 kB
  • ctags: 17,415
  • sloc: ansic: 528,540; cpp: 5,641; perl: 3,051; makefile: 801; xml: 702; python: 302; sh: 205; awk: 42
file content (21 lines) | stat: -rw-r--r-- 473 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export BINDIR=/bin
export MANDIR=/share/man
export INSTALL_ROOT=/usr/local

all:
	cd tests/misc/tetj && $(MAKE) 
	cd tests/misc/elfchk && $(MAKE) 
	cd tests/misc/rpmchk && $(MAKE) 
	cd tests/misc/appchk && $(MAKE) 

test:
	cd tests/misc/appchk && $(MAKE) test

install:
	cd tests/misc/appchk && $(MAKE) install

clean:
	cd tests/misc/appchk && $(MAKE) clean
	cd tests/misc/rpmchk && $(MAKE) clean
	cd tests/misc/elfchk && $(MAKE) clean
	cd tests/misc/tetj && $(MAKE) clean