From b3354b5b163a148e19ec244ad8e13e4595d15708 Mon Sep 17 00:00:00 2001 From: thkummi <36160753+thkummi@users.noreply.github.com> Date: Fri, 20 Aug 2021 03:22:16 +0200 Subject: [PATCH] Update Makefile --- Makefile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index a7ac055..9d31629 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,14 @@ -ctenna: main.o hb9cv.o jpole.o groundplane.c - gcc -o ctenna main.o hb9cv.o jpole.o groundplane.c - -main.o: main.c - gcc -c main.c - -hb9cv.o: hb9cv.c - gcc -c hb9cv.c - -jpole.o: jpole.c - gcc -c jpole.c +ctenna: main.o hb9cv.o jpole.o groundplane.o + cc -o ctenna main.o hb9cv.o jpole.o groundplane.o + +main.o: main.c + cc -c main.c + +hb9cv.o: hb9cv.c + cc -c hb9cv.c + +jpole.o: jpole.c + cc -c jpole.c groundplane.o: groundplane.c - gcc -c groundplane.c + cc -c groundplane.c