QModem/sendat/src/Makefile
2023-11-09 19:03:28 +08:00

9 lines
112 B
Makefile

all:sendat
OBJS = sendat.o
sendat:$(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS) -lpthread
clean:
rm -f sendat *.o