daemon designed to read short data bursts from weather stations transmitting over the Iridium satellite network
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
281 B

  1. RM=rm -f
  2. CFLAGS=
  3. LDFLAGS=
  4. LIBS=
  5. TARGET=wstationd
  6. SRC= \
  7. src/imei.c \
  8. src/wstationd.c
  9. OBJ=$(SRC:.c=.o)
  10. .PHONY: clean all
  11. .c.o:
  12. $(CC) -Wall -std=c99 $(CFLAGS) -c $< -o $@
  13. all: $(TARGET)
  14. $(TARGET): $(OBJ)
  15. $(CC) $(LDFLAGS) $(OBJ) $(LIBS) -o $@
  16. clean:
  17. $(RM) $(OBJ) $(TARGET)