File: Makefile

package info (click to toggle)
grandfatherclock 1.0.1-7
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,000 kB
  • ctags: 17
  • sloc: makefile: 159; perl: 151
file content (23 lines) | stat: -rw-r--r-- 574 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Makefile added for Debian by Dr. Guenter Bechly 

DESTDIR   =
BINDIR    = $(DESTDIR)/usr/bin
LIBDIR = $(DESTDIR)/usr/share/grandfatherclock
CONFDIR = $(DESTDIR)/etc
MANDIR = $(DESTDIR)/usr/share/man/man6

install: 
	install -d $(BINDIR)
	install bin/grandfatherclock  $(BINDIR)
	install -d $(LIBDIR)
	install lib/*  $(LIBDIR)
	install -d $(CONFDIR)
	install etc/grandfatherclockrc  $(CONFDIR)
	install -d $(MANDIR)
	install doc/grandfatherclock.6  $(MANDIR)

#!/bin/sh
	chmod 755 $(BINDIR)/grandfatherclock
	chmod 664 $(LIBDIR)/*
	chmod 664 $(CONFDIR)/grandfatherclockrc