File: Makefile

package info (click to toggle)
iproute 20120521-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,968 kB
  • sloc: ansic: 39,902; sh: 1,774; cpp: 476; makefile: 466; yacc: 339; lex: 145; perl: 101
file content (20 lines) | stat: -rw-r--r-- 378 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
INSTALL=install
INSTALLDIR=install -m 0755 -d
INSTALLMAN=install -m 0644

SUBDIRS = man3 man8

all:
	@for subdir in $(SUBDIRS); do $(MAKE) -C $$subdir; done

distclean: clean

clean:
	@for subdir in $(SUBDIRS); do $(MAKE) -C $$subdir clean; done

install:
	@for subdir in $(SUBDIRS); do $(MAKE) -C $$subdir install; done

.PHONY: install clean distclean

.EXPORT_ALL_VARIABLES: