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.
 
 
 
 
 

12 lines
365 B

ifeq ($(OS),Windows_NT)
PROGRAM_CMD = bin/mdloader_windows --first --download $(TARGET).hex --restart
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
PROGRAM_CMD = bin/mdloader_mac --first --download $(TARGET).hex --restart
else
PROGRAM_CMD = sudo bin/mdloader_linux --first --download $(TARGET).hex --restart
endif
endif
USER_NAME := jdelkins