FreeCalypso > hg > freecalypso-reveng
view fluid-mnf/Makefile @ 395:00f5287db832
se_k200i/flash-notes: fix wrong number of zeros in 0x20000 address
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sun, 01 Jan 2023 01:42:04 +0000 |
| parents | bc5ddad215f2 |
| children |
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} install: mkdir -p /opt/freecalypso/bin install -c ${PROG} /opt/freecalypso/bin mkdir -p /opt/freecalypso/fluid install -c -m 644 target-bin/* devices.txt /opt/freecalypso/fluid clean: rm -f *.o ${PROG}
