mirror of
https://github.com/stevenhowes/ctenna.git
synced 2026-05-26 15:53:28 +01:00
15 lines
257 B
Makefile
15 lines
257 B
Makefile
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
|
|
cc -c groundplane.c
|