File: Makefile

package info (click to toggle)
global 4.8.6-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,356 kB
  • ctags: 4,245
  • sloc: ansic: 26,150; lex: 1,471; perl: 1,233; sh: 1,032; lisp: 410; makefile: 158; yacc: 123
file content (16 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
PROG = htconfig htmake

DESTDIR = /usr
BINDIR = $(DESTDIR)/bin
MANDIR = $(DESTDIR)/man

all:
install:
	@for file in $(PROG); do\
		cp $$file.pl $(BINDIR)/$$file;\
		chmod 755 $(BINDIR)/$$file;\
		cp $$file.1 $(MANDIR)/man1;\
		chmod 644 $(MANDIR)/man1/$$file.1;\
	done
clean: