FreeCalypso > hg > fc-sim-sniff
diff sw/sniff-rx/Makefile @ 22:b112c2df6c43
sw: simtrace3-sniff-rx program written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 22 Aug 2023 06:16:44 +0000 |
parents | |
children | fb9c03515832 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sw/sniff-rx/Makefile Tue Aug 22 06:16:44 2023 +0000 @@ -0,0 +1,13 @@ +CC= gcc +CFLAGS= -O2 +PROG= simtrace3-sniff-rx +OBJS= byteproc.o datetime.o initflush.o main.o mainloop.o +LIBS= ../libserial/libserial.a + +all: ${PROG} + +${PROG}: ${OBJS} ${LIBS} + ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} + +clean: + rm -f *.o ${PROG}