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-- 580 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17


DATAFILES = Adventurer.png Altinov.png Berlin.png Dominical72.png \
Ebony.png Harlequin.png Lcd.png NutBolt.png Primepov.png SadGreen.png \
Utretch.png Whitney.png \
Beat1.wav  Beat2.wav  Boing1.wav Challenge1.wav Cling1.wav GameOver1.wav \
Tick1.wav ShallWePlay.wav Victory1.wav Voosh.wav themeconf.extras2

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