File: Makefile

package info (click to toggle)
rdist 6.1.5-18
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 1,808 kB
  • ctags: 2,747
  • sloc: ansic: 8,379; sh: 554; yacc: 492; perl: 117; makefile: 69
file content (32 lines) | stat: -rw-r--r-- 692 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Copyright (c) 1992-1998 Michael A. Cooper.  
# This software may be freely used and distributed provided it is not
# sold for profit or used in part or in whole for commercial gain
# without prior written agreement, and the author is credited
# appropriately.
#
# $Id: Makefile,v 6.10 1998/11/10 03:36:06 mcooper Exp $
#

#
# Main top-level Makefile
#

MAKE=make
TARGETS = src config doc support mf
SHELL=/bin/sh

all install install.man: FRC
	@for t in $(TARGETS); do \
		echo Making \"$@\" in \"$$t\"; \
		(cd $$t; ${MAKE} $@) || exit; \
	done

clean:
	rm -f *~ a.out core \#*
	@for t in $(TARGETS); do \
		echo Making \"$@\" in \"$$t\"; \
		(cd $$t; ${MAKE} $@) || exit; \
	done

FRC: