view fluid-mnf/Makefile @ 349:f2eaa4238bef

fluid-mnf/target-bin: target-side code pieces from original FLUID
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 13 Mar 2020 06:51:38 +0000
parents 2aa78da4033b
children bc5ddad215f2
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	fluid-mnf
OBJS=	efluid.o fileio.o flash.o fluid.o lzdecode.o lzencode.o machine.o \
	misc.o serial.o target.o trace.o

all:	${PROG}

${PROG}:	${OBJS}
	${CC} -o $@ ${OBJS}

clean:
	rm -f *.o ${PROG}