IP400/rpi/stm32flash/parsers/Makefile

13 lines
139 B
Makefile
Raw Normal View History

2025-01-29 11:17:14 -07:00
CFLAGS += -Wall -g
all: parsers.a
parsers.a: binary.o hex.o
$(AR) rc $@ binary.o hex.o
clean:
rm -f *.o parsers.a
.PHONY: all clean