FreeCalypso > hg > freecalypso-reveng
comparison fluid-mnf/Makefile @ 346:2aa78da4033b
fluid-mnf: compiles and links
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 13 Mar 2020 06:16:57 +0000 |
parents | |
children | bc5ddad215f2 |
comparison
equal
deleted
inserted
replaced
345:b595ff13547b | 346:2aa78da4033b |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROG= fluid-mnf | |
4 OBJS= efluid.o fileio.o flash.o fluid.o lzdecode.o lzencode.o machine.o \ | |
5 misc.o serial.o target.o trace.o | |
6 | |
7 all: ${PROG} | |
8 | |
9 ${PROG}: ${OBJS} | |
10 ${CC} -o $@ ${OBJS} | |
11 | |
12 clean: | |
13 rm -f *.o ${PROG} |