File: Makefile.am

package info (click to toggle)
pachi 1%3A1.0-15
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 16,500 kB
  • sloc: ansic: 2,739; sh: 361; makefile: 110; cpp: 69
file content (22 lines) | stat: -rw-r--r-- 396 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
group = games
perms = 666

datdir = $(DATAPATH)/data
scoredir = $(SCOREPATH)/data

dat_DATA = \
backs.dat \
monsters.dat \
objects_v2.dat \
rooms_v2.dat

score_DATA = \
scores.dat

EXTRA_DIST = $(dat_DATA) $(score_DATA)

install-data-local:
#	for file in $(score_DATA); do\
#	    chgrp $(group) $(DESTDIR)$(scoredir)/$$file; \
#	    chmod $(perms) $(DESTDIR)$(scoredir)/$$file; \
#	done