view libftmini/Makefile @ 18:fce3d4baa2b4

libftmini: implement EEPROM write
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 07 Sep 2023 22:43:53 +0000
parents 67ecb394b24f
children d420375243c9
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
OBJS=	eeprom_rd.o eeprom_wr.o
LIB=	libftmini.a

all:	${LIB}

${LIB}:	${OBJS}
	ar rcu $@ ${OBJS}
	ranlib $@

clean:
	rm -f *.[oa] errs