mirror of
https://github.com/stevenhowes/ctenna.git
synced 2026-05-26 15:53:28 +01:00
9 lines
114 B
Makefile
9 lines
114 B
Makefile
prog: main.o hb9cv.o
|
|
gcc -o prog main.o hb9cv.o
|
|
|
|
main.o: main.c
|
|
gcc -c main.c
|
|
|
|
hb9cv.o: hb9cv.c
|
|
gcc -c hb9cv.c
|