@@ -210,7 +210,7 @@ endif
210
210
# If you compile with the RPi 2 specific options above and try to run it on the RPi
211
211
# model B (pre version 2), it will die with "illegal instruction."
212
212
#
213
- # Dire Wolf is known to work on the BeagleBone, CubieBoard2, etc.
213
+ # Dire Wolf is known to work on the BeagleBone, CubieBoard2, CHIP, etc.
214
214
# The best compiler options will depend on the specific type of processor
215
215
# and the compiler target defaults.
216
216
#
@@ -292,12 +292,14 @@ LDFLAGS += -lhamlib
292
292
endif
293
293
294
294
295
+ # Should enabling of this feature be strongly encouraged or
296
+ # is it quite specialized and of interest to a small audience?
295
297
# If, for some reason, can obtain the libudev-dev package, or
296
298
# don't want to install it, comment out the next 3 lines.
297
299
298
- ifeq ($(wildcard /usr/include/libudev.h),)
299
- $(error /usr/include/libudev.h does not exist. Install it with "sudo apt-get install libudev-dev" or "sudo yum install libudev-devel" )
300
- endif
300
+ # ifeq ($(wildcard /usr/include/libudev.h),)
301
+ # $(error /usr/include/libudev.h does not exist. Install it with "sudo apt-get install libudev-dev" or "sudo yum install libudev-devel" )
302
+ # endif
301
303
302
304
303
305
# Enable cm108 PTT support if libudev header file is present.
@@ -541,6 +543,7 @@ direwolf.conf : generic.conf
541
543
# Eventually I'd like to have targets here to build the .DEB and .RPM packages.
542
544
543
545
INSTALLDIR := /usr/local
546
+ #INSTALLDIR := /usr
544
547
545
548
# Command to "install" to system directories. Use "ginstall" for Mac.
546
549
@@ -566,14 +569,14 @@ else
566
569
endif
567
570
@echo 'Name=Dire Wolf' >> $@
568
571
@echo 'Comment=APRS Soundcard TNC' >> $@
569
- @echo 'Icon=/usr /share/direwolf/dw-icon.png' >> $@
572
+ @echo 'Icon=$(INSTALLDIR) /share/direwolf/dw-icon.png' >> $@
570
573
@echo "Path=$(HOME)" >> $@
571
574
@echo '#Terminal=true' >> $@
572
575
@echo 'Categories=HamRadio' >> $@
573
576
@echo 'Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25' >> $@
574
577
575
578
576
- # Installation into /usr/local/...
579
+ # Installation into $(INSTALLDIR), usually /usr/local/... or /usr /...
577
580
# Needs to be run as root or with sudo.
578
581
579
582
@@ -583,40 +586,40 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
583
586
# Applications, not installed with package manager, normally go in /usr/local/bin.
584
587
# /usr/bin is used instead when installing from .DEB or .RPM package.
585
588
#
586
- $(INSTALL) direwolf $(INSTALLDIR)/bin
587
- $(INSTALL) decode_aprs $(INSTALLDIR)/bin
588
- $(INSTALL) text2tt $(INSTALLDIR)/bin
589
- $(INSTALL) tt2text $(INSTALLDIR)/bin
590
- $(INSTALL) ll2utm $(INSTALLDIR)/bin
591
- $(INSTALL) utm2ll $(INSTALLDIR)/bin
592
- $(INSTALL) aclients $(INSTALLDIR)/bin
593
- $(INSTALL) log2gpx $(INSTALLDIR)/bin
594
- $(INSTALL) gen_packets $(INSTALLDIR)/bin
595
- $(INSTALL) atest $(INSTALLDIR)/bin
596
- $(INSTALL) ttcalc $(INSTALLDIR)/bin
597
- $(INSTALL) kissutil $(INSTALLDIR)/bin
598
- $(INSTALL) cm108 $(INSTALLDIR)/bin
599
- $(INSTALL) dwespeak.sh $(INSTALLDIR)/bin
589
+ $(INSTALL) -D --mode=755 direwolf $(INSTALLDIR)/bin/direwolf
590
+ $(INSTALL) -D --mode=755 decode_aprs $(INSTALLDIR)/bin/decode_aprs
591
+ $(INSTALL) -D --mode=755 text2tt $(INSTALLDIR)/bin/text2tt
592
+ $(INSTALL) -D --mode=755 tt2text $(INSTALLDIR)/bin/tt2text
593
+ $(INSTALL) -D --mode=755 ll2utm $(INSTALLDIR)/bin/ll2utm
594
+ $(INSTALL) -D --mode=755 utm2ll $(INSTALLDIR)/bin/utm2ll
595
+ $(INSTALL) -D --mode=755 aclients $(INSTALLDIR)/bin/aclients
596
+ $(INSTALL) -D --mode=755 log2gpx $(INSTALLDIR)/bin/log2gpx
597
+ $(INSTALL) -D --mode=755 gen_packets $(INSTALLDIR)/bin/gen_packets
598
+ $(INSTALL) -D --mode=755 atest $(INSTALLDIR)/bin/atest
599
+ $(INSTALL) -D --mode=755 ttcalc $(INSTALLDIR)/bin/ttcalc
600
+ $(INSTALL) -D --mode=755 kissutil $(INSTALLDIR)/bin/kissutil
601
+ $(INSTALL) -D --mode=755 cm108 $(INSTALLDIR)/bin/cm108
602
+ $(INSTALL) -D --mode=755 dwespeak.sh $(INSTALLDIR)/bin/dwspeak.sh
600
603
#
601
604
# Telemetry Toolkit executables. Other .conf and .txt files will go into doc directory.
602
605
#
603
- $(INSTALL) telemetry-toolkit/telem-balloon.pl $(INSTALLDIR)/bin
604
- $(INSTALL) telemetry-toolkit/telem-bits.pl $(INSTALLDIR)/bin
605
- $(INSTALL) telemetry-toolkit/telem-data.pl $(INSTALLDIR)/bin
606
- $(INSTALL) telemetry-toolkit/telem-data91.pl $(INSTALLDIR)/bin
607
- $(INSTALL) telemetry-toolkit/telem-eqns.pl $(INSTALLDIR)/bin
608
- $(INSTALL) telemetry-toolkit/telem-parm.pl $(INSTALLDIR)/bin
609
- $(INSTALL) telemetry-toolkit/telem-seq.sh $(INSTALLDIR)/bin
610
- $(INSTALL) telemetry-toolkit/telem-unit.pl $(INSTALLDIR)/bin
611
- $(INSTALL) telemetry-toolkit/telem-volts.py $(INSTALLDIR)/bin
606
+ $(INSTALL) -D --mode=755 telemetry-toolkit/telem-balloon.pl $(INSTALLDIR)/bin/telem-balloon.pl
607
+ $(INSTALL) -D --mode=755 telemetry-toolkit/telem-bits.pl $(INSTALLDIR)/bin/telem-bits.pl
608
+ $(INSTALL) -D --mode=755 telemetry-toolkit/telem-data.pl $(INSTALLDIR)/bin/telem-data.pl
609
+ $(INSTALL) -D --mode=755 telemetry-toolkit/telem-data91.pl $(INSTALLDIR)/bin/telem-data91.pl
610
+ $(INSTALL) -D --mode=755 telemetry-toolkit/telem-eqns.pl $(INSTALLDIR)/bin/telem-eqns.pl
611
+ $(INSTALL) -D --mode=755 telemetry-toolkit/telem-parm.pl $(INSTALLDIR)/bin/telem-parm.pl
612
+ $(INSTALL) -D --mode=755 telemetry-toolkit/telem-seq.sh $(INSTALLDIR)/bin/telem-seq.sh
613
+ $(INSTALL) -D --mode=755 telemetry-toolkit/telem-unit.pl $(INSTALLDIR)/bin/telem-unit.pl
614
+ $(INSTALL) -D --mode=755 telemetry-toolkit/telem-volts.py $(INSTALLDIR)/bin/telem-volts.py
612
615
#
613
616
# Misc. data such as "tocall" to system mapping.
614
617
#
615
- $(INSTALL) -D --mode=644 tocalls.txt /usr /share/direwolf/tocalls.txt
616
- $(INSTALL) -D --mode=644 symbols-new.txt /usr /share/direwolf/symbols-new.txt
617
- $(INSTALL) -D --mode=644 symbolsX.txt /usr /share/direwolf/symbolsX.txt
618
- $(INSTALL) -D --mode=644 dw-icon.png /usr /share/direwolf/dw-icon.png
619
- $(INSTALL) -D --mode=644 direwolf.desktop /usr /share/applications/direwolf.desktop
618
+ $(INSTALL) -D --mode=644 tocalls.txt $(INSTALLDIR) /share/direwolf/tocalls.txt
619
+ $(INSTALL) -D --mode=644 symbols-new.txt $(INSTALLDIR) /share/direwolf/symbols-new.txt
620
+ $(INSTALL) -D --mode=644 symbolsX.txt $(INSTALLDIR) /share/direwolf/symbolsX.txt
621
+ $(INSTALL) -D --mode=644 dw-icon.png $(INSTALLDIR) /share/direwolf/dw-icon.png
622
+ $(INSTALL) -D --mode=644 direwolf.desktop $(INSTALLDIR) /share/applications/direwolf.desktop
620
623
#
621
624
# Documentation. Various plain text files and PDF.
622
625
#
@@ -625,6 +628,7 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
625
628
$(INSTALL) -D --mode=644 LICENSE-other.txt $(INSTALLDIR)/share/doc/direwolf/LICENSE-other.txt
626
629
#
627
630
# ./README.md is an overview for the project main page.
631
+ # Maybe we could stick it in some other place.
628
632
# doc/README.md contains an overview of the PDF file contents and is more useful here.
629
633
#
630
634
$(INSTALL) -D --mode=644 doc/README.md $(INSTALLDIR)/share/doc/direwolf/README.md
@@ -659,17 +663,17 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
659
663
#
660
664
# "man" pages
661
665
#
662
- $(INSTALL) -D --mode=644 man1/aclients.1 $(INSTALLDIR)/man/man1/aclients.1
663
- $(INSTALL) -D --mode=644 man1/atest.1 $(INSTALLDIR)/man/man1/atest.1
664
- $(INSTALL) -D --mode=644 man1/decode_aprs.1 $(INSTALLDIR)/man/man1/decode_aprs.1
665
- $(INSTALL) -D --mode=644 man1/direwolf.1 $(INSTALLDIR)/man/man1/direwolf.1
666
- $(INSTALL) -D --mode=644 man1/gen_packets.1 $(INSTALLDIR)/man/man1/gen_packets.1
667
- $(INSTALL) -D --mode=644 man1/kissutil.1 $(INSTALLDIR)/man/man1/kissutil.1
668
- $(INSTALL) -D --mode=644 man1/ll2utm.1 $(INSTALLDIR)/man/man1/ll2utm.1
669
- $(INSTALL) -D --mode=644 man1/log2gpx.1 $(INSTALLDIR)/man/man1/log2gpx.1
670
- $(INSTALL) -D --mode=644 man1/text2tt.1 $(INSTALLDIR)/man/man1/text2tt.1
671
- $(INSTALL) -D --mode=644 man1/tt2text.1 $(INSTALLDIR)/man/man1/tt2text.1
672
- $(INSTALL) -D --mode=644 man1/utm2ll.1 $(INSTALLDIR)/man/man1/utm2ll.1
666
+ $(INSTALL) -D --mode=644 man1/aclients.1 $(INSTALLDIR)/share/ man/man1/aclients.1
667
+ $(INSTALL) -D --mode=644 man1/atest.1 $(INSTALLDIR)/share/ man/man1/atest.1
668
+ $(INSTALL) -D --mode=644 man1/decode_aprs.1 $(INSTALLDIR)/share/ man/man1/decode_aprs.1
669
+ $(INSTALL) -D --mode=644 man1/direwolf.1 $(INSTALLDIR)/share/ man/man1/direwolf.1
670
+ $(INSTALL) -D --mode=644 man1/gen_packets.1 $(INSTALLDIR)/share/ man/man1/gen_packets.1
671
+ $(INSTALL) -D --mode=644 man1/kissutil.1 $(INSTALLDIR)/share/ man/man1/kissutil.1
672
+ $(INSTALL) -D --mode=644 man1/ll2utm.1 $(INSTALLDIR)/share/ man/man1/ll2utm.1
673
+ $(INSTALL) -D --mode=644 man1/log2gpx.1 $(INSTALLDIR)/share/ man/man1/log2gpx.1
674
+ $(INSTALL) -D --mode=644 man1/text2tt.1 $(INSTALLDIR)/share/ man/man1/text2tt.1
675
+ $(INSTALL) -D --mode=644 man1/tt2text.1 $(INSTALLDIR)/share/ man/man1/tt2text.1
676
+ $(INSTALL) -D --mode=644 man1/utm2ll.1 $(INSTALLDIR)/share/ man/man1/utm2ll.1
673
677
#
674
678
# Set group and mode of HID devices corresponding to C-Media USB Audio adapters.
675
679
# This will allow us to use the CM108/CM119 GPIO pins for PTT.
@@ -684,22 +688,28 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
684
688
@echo " "
685
689
686
690
687
- # Put sample configuration files in home directory.
688
- # These would be done as ordinary user.
691
+ # Put sample configuration & startup files in home directory.
692
+ # This step would be done as ordinary user.
693
+ # Some people like to put the direwolf config file in /etc/ax25.
694
+ # Note that all of these are also in $(INSTALLDIR)/share/doc/direwolf/examples/.
689
695
690
696
# The Raspberry Pi has ~/Desktop but Ubuntu does not.
691
697
692
698
# TODO: Handle Linux variations correctly.
693
699
694
700
# Version 1.4 - Add "-n" option to avoid clobbering existing, probably customized, config files.
695
701
702
+ # dw-start.sh is greatly improved in version 1.4.
703
+ # It was moved from isntall-rpi to install-conf because it is not just for the RPi.
696
704
697
705
.PHONY: install-conf
698
706
install-conf : direwolf.conf
699
707
cp -n direwolf.conf ~
700
708
cp -n sdr.conf ~
701
709
cp -n telemetry-toolkit/telem-m0xer-3.txt ~
702
710
cp -n telemetry-toolkit/telem-*.conf ~
711
+ chmod +x dw-start.sh
712
+ cp -n dw-start.sh ~
703
713
ifneq ($(wildcard $(HOME)/Desktop),)
704
714
@echo " "
705
715
@echo "This will add a desktop icon on some systems."
@@ -710,14 +720,9 @@ ifneq ($(wildcard $(HOME)/Desktop),)
710
720
endif
711
721
712
722
713
- # dw-start.sh is greatly improved in version 1.4.
714
- # It should probably be part of install-conf because it is not just for the RPi.
715
-
716
723
.PHONY: install-rpi
717
- install-rpi : dw-start.sh
718
- chmod +x dw-start.sh
719
- cp -n dw-start.sh ~
720
- ln -f -s /usr/share/applications/direwolf.desktop ~/Desktop/direwolf.desktop
724
+ install-rpi :
725
+ ln -f -s $(INSTALLDIR)/share/applications/direwolf.desktop ~/Desktop/direwolf.desktop
721
726
722
727
723
728
0 commit comments