IP400/rpi/stm32flash/parsers/Makefile

13 lines
139 B
Makefile
Raw Normal View History

2025-01-29 20:17:14 +02: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