rules.mk 365 B

123456789101112
  1. ifeq ($(OS),Windows_NT)
  2. PROGRAM_CMD = bin/mdloader_windows --first --download $(TARGET).hex --restart
  3. else
  4. UNAME_S := $(shell uname -s)
  5. ifeq ($(UNAME_S),Darwin)
  6. PROGRAM_CMD = bin/mdloader_mac --first --download $(TARGET).hex --restart
  7. else
  8. PROGRAM_CMD = sudo bin/mdloader_linux --first --download $(TARGET).hex --restart
  9. endif
  10. endif
  11. USER_NAME := jdelkins