mirror of
https://github.com/eddyem/STM8_samples.git
synced 2025-12-06 10:45:12 +03:00
35 lines
722 B
Makefile
35 lines
722 B
Makefile
NAME=testproj
|
|
SDCC=sdcc
|
|
|
|
CCFLAGS=-DSTM8S105 -I../ -I/usr/share/sdcc/include -mstm8 --out-fmt-ihx
|
|
LDFLAGS= -mstm8 --out-fmt-ihx -lstm8
|
|
FLASHFLAGS=-cstlinkv2 -pstm8s105
|
|
|
|
SRC=$(wildcard *.c)
|
|
# ATTENTION: FIRST in list should be file with main()
|
|
OBJ=$(SRC:%.c=%.rel)
|
|
TRASH=$(OBJ) $(SRC:%.c=%.rst) $(SRC:%.c=%.asm) $(SRC:%.c=%.lst)
|
|
TRASH+=$(SRC:%.c=%.sym) $(NAME).ihx $(NAME).lk $(NAME).map
|
|
INDEPENDENT_HEADERS=../stm8l.h ports_definition.h Makefile
|
|
|
|
all: $(NAME).ihx
|
|
|
|
$(SRC) : %.c : %.h $(INDEPENDENT_HEADERS)
|
|
@touch $@
|
|
|
|
%.h: ;
|
|
|
|
clean:
|
|
rm -f $(TRASH)
|
|
|
|
load: $(NAME).ihx
|
|
stm8flash $(FLASHFLAGS) -w $(NAME).ihx
|
|
|
|
%.rel: %.c
|
|
$(SDCC) $(CCFLAGS) -c $<
|
|
|
|
$(NAME).ihx: $(OBJ)
|
|
$(SDCC) $(LDFLAGS) $(OBJ) -o $(NAME).ihx
|
|
|
|
.PHONY: all
|