Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3a4200d

Browse files
committedJan 25, 2016
Fix for Makefile.linux for clang
1 parent 3a7dea6 commit 3a4200d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎Makefile.linux

+3-3
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ gen_packets : gen_packets.c ax25_pad.c hdlc_send.c fcs_calc.c gen_tone.c morse.c
327327

328328
# Unit test for AFSK demodulator
329329

330-
atest : atest.c fsk_fast_filter.h demod.c demod_afsk.c demod_9600.c \
330+
atest : atest.c demod.o demod_afsk.o demod_9600.c \
331331
dsp.o hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
332332
fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o \
333333
dwgps.o dwgpsd.o serial_port.o telemetry.c latlong.c symbols.c tt_text.c textcolor.c \
@@ -692,7 +692,7 @@ itest : igate.c textcolor.c ax25_pad.c fcs_calc.c textcolor.o misc.a
692692

693693
# Unit test for UDP reception with AFSK demodulator
694694

695-
udptest : udp_test.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.c multi_modem.c rrbb.c
695+
udptest : udp_test.c demod.o dsp.c demod_afsk.o demod_9600.c hdlc_rec.c hdlc_rec2.c multi_modem.c rrbb.c \
696696
fcs_calc.c ax25_pad.c decode_aprs.c symbols.c textcolor.c misc.a
697697
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
698698
./udptest
@@ -701,7 +701,7 @@ demod.o : tune.h
701701
demod_afsk.o : tune.h
702702
demod_9600.o : tune.h
703703

704-
testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
704+
testagc : atest.c demod.o dsp.c demod_afsk.o demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
705705
fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c latlong.c symbols.c tune.h textcolor.c misc.a
706706
$(CC) $(CFLAGS) -o atest $^ $(LDFLAGS)
707707
./atest 02_Track_2.wav | grep "packets decoded in" > atest.out

0 commit comments

Comments
 (0)
Please sign in to comment.