9 lines
112 B
Makefile
9 lines
112 B
Makefile
all:sendat
|
|
|
|
OBJS = sendat.o
|
|
|
|
sendat:$(OBJS)
|
|
$(CC) $(CFLAGS) -o $@ $(OBJS) -lpthread
|
|
|
|
clean:
|
|
rm -f sendat *.o
|