~ubuntu-branches/ubuntu/intrepid/morse/intrepid

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Joop Stakenborg
  • Date: 2006-03-18 09:47:15 UTC
  • Revision ID: james.westby@ubuntu.com-20060318094715-hdvgqoiy0qjj9kip
Tags: 2.1-2
Add libx11-dev build dependency. Closes: #357570. Thanks Martin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
# to the authors!
24
24
#
25
25
#DEVICE = X11
26
 
#DEVICE = Linux
27
 
DEVICE = OSS
 
26
DEVICE = Linux
 
27
#DEVICE = OSS
28
28
 
29
29
VERS=$(shell sed <morse.spec -n -e '/Version: \(.*\)/s//\1/p')
30
30
 
39
39
 
40
40
all: morse QSO morse.1 QSO.1
41
41
 
 
42
install: all
 
43
        install morse.d/morseLinux $(DESTDIR)/usr/bin/morse
 
44
        install morse.d/morseX11 $(DESTDIR)/usr/bin
 
45
        install qso.d/QSO $(DESTDIR)/usr/bin
 
46
 
42
47
morse:
43
 
        cd morse.d && make DEVICE=${DEVICE}
44
 
        ln morse.d/morse ./morse
 
48
#       cd morse.d && make DEVICE=${DEVICE}
 
49
#       ln morse.d/morse ./morse
45
50
 
46
51
QSO:
47
52
        cd qso.d && make
48
 
        ln qso.d/QSO ./QSO
 
53
#       ln qso.d/QSO ./QSO
49
54
 
50
55
#
51
56
# "Jocks find quartz glyph, vex BMW." is my attempt to win Stephen J. Gould's
56
61
# he did say it's the closest he's seen so far. - Joe Dellinger
57
62
#
58
63
testmorse:      morse QSO
59
 
        (cat test_input; qso.d/QSO) | morse -w 24 -l -e
 
64
#       (cat test_input; qso.d/QSO) | morse -w 24 -l -e
60
65
 
61
66
testqso:        morse QSO
62
 
        qso.d/QSO | ./morse -w 20 -l -e
 
67
#       qso.d/QSO | ./morse -w 20 -l -e
63
68
 
64
69
all:    morse QSO
65
70