mirror of
https://github.com/stevenhowes/ctenna.git
synced 2026-05-27 00:03:27 +01:00
15 lines
251 B
Makefile
15 lines
251 B
Makefile
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
|
|
|
|
groundplane.o: groundplane.c
|
|
gcc -c groundplane.c
|