File: Makefile

package info (click to toggle)
mhonarc 2.1-1
  • links: PTS
  • area: main
  • in suites: hamm, slink
  • size: 1,932 kB
  • ctags: 2,849
  • sloc: perl: 7,329; makefile: 51
file content (29 lines) | stat: -rw-r--r-- 614 bytes parent folder | download
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
##---------------------------------------------------------------------------##
##	@(#) Makefile 1.5 97/05/15 16:59:40 @(#)
##---------------------------------------------------------------------------##

CHMOD		= /bin/chmod
RM		= /bin/rm
PRGS		= mhonarc
TXTFILES	= ACKNOWLG CHANGES COPYING README RELNOTES INSTALL BUGS
DOSIFY		= dosify
PERL		= perl
INSTALLPRG	= install.me
INSTALLCFG	= install.cfg

default:
	$(CHMOD) a+x $(PRGS)
	$(CHMOD) -R a+r,a+X .
	$(DOSIFY) $(TXTFILES)

install:
	$(PERL) $(INSTALLPRG)

install-batch:
	$(PERL) $(INSTALLPRG) batch

test:
	@echo "No tests"

clean:
	@echo "Nothing to clean"