#
#
#

include ../Makefile.defs

OBJS = afsk1200mod.o aprsframe.o

all:  aprs.a


clean:
	-rm -f *.o *.a *~  test *.wav *.ub *.sb

aprs.a: $(OBJS)
	-rm -f aprs.a
	ar q aprs.a $(OBJS)


test: $(OBJS) test.o
	$(CC) $(CFLAGS) -o test test.o $(OBJS)
	./test > test.ub
	sox -r 6000 -c 1 test.ub test.wav
