File: Makefile

package info (click to toggle)
eboard 1.1.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,156 kB
  • sloc: cpp: 24,340; perl: 1,038; ansic: 279; sh: 105; makefile: 52
file content (17 lines) | stat: -rw-r--r-- 647 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

DATAFILES = Alpha.png Diagram.png Kingdom.png Slics.png WCN.png \
            Book.png Dyche1.png Leipzig.png Staunton.png Yahoo.png \
            Chap.png Dyche2.png Mayan.png Traveler.png \
            ChessBase.png Enquil.png OldClassicDark.png Usual.png \
            Cmf.png Jumbo.png Rastapov.png Vision.png \
            Draw1.wav Move1.wav Tell1.wav themeconf.extras1

INSTALL = /usr/bin/install
RMF     = /bin/rm -f 

install:
	if [ -d $(DATADIR) ]; then for p in $(DATAFILES); do $(INSTALL) -m 0644 $$p $(DATADIR)/$$p ; done ; fi

uninstall:
	for p in $(DATAFILES); do if [ -f $(DATADIR)/$$p ] ; then $(RMF) $(DATADIR)/$$p ; fi ; done