stardust-remixer/src/Makefile

16 lines
250 B
Makefile
Raw Normal View History

2019-01-07 18:55:04 +01:00
SRC=blink_led.c
CC=sdcc
FAMILY=pic14
PROC=16f1575
all: $(SRC:.c=.hex)
$(SRC:.c=.hex): $(SRC)
$(CC) --use-non-free -m$(FAMILY) -p$(PROC) $^
clean:
rm -f $(SRC:.c=.asm) $(SRC:.c=.cod) $(SRC:.c=.hex) $(SRC:.c=.lst) $(SRC:.c=.o)
.PHONY: all clean