File: Makefile

package info (click to toggle)
saydate 0.3.0-10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 476 kB
  • ctags: 8
  • sloc: sh: 205; makefile: 53
file content (23 lines) | stat: -rw-r--r-- 594 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 adapted from saytime by Dr. Guenter Bechly 

BINDIR    = /usr/bin
SOUNDSDIR = /usr/share/saydate
MANDIR    = /usr/man/man1
#MANDIR    = /usr/share/man/man1 
DOCDIR    = /usr/doc
#DOCDIR    = /usr/share/doc
SAYDIR    = $(DOCDIR)/saydate

install: 
	install saydate  $(BINDIR)
	install au2raw $(BINDIR)
	install -d $(SOUNDSDIR)
	install data/*.raw  $(SOUNDSDIR)
	install man/saydate.1.gz $(MANDIR)
	install man/au2raw.1.gz $(MANDIR)
	install -d $(SAYDIR)
	install README $(SAYDIR)
	install TODO $(SAYDIR)
	install HISTORY $(SAYDIR)
	install DESIGN $(SAYDIR)
	install COPYING $(SAYDIR)