From 91f2e648c8755d717177586675262310862bc0a8 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 13 Jan 2021 09:44:19 +0000 Subject: [PATCH] Add library build and install --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index c27a20a..a414ce7 100644 --- a/Makefile +++ b/Makefile @@ -21,3 +21,6 @@ decode_ft8: decode_ft8.o fft/kiss_fftr.o fft/kiss_fft.o ft8/decode.o ft8/encode. clean: rm -f *.o ft8/*.o common/*.o fft/*.o $(TARGETS) +install: + $(AR) rc libft8.a ft8/constants.o ft8/encode.o ft8/pack.o ft8/text.o common/wave.o + install libft8.a /usr/lib/libft8.a