FreeCalypso > hg > freecalypso-hwlab
view fteeprom/Makefile @ 105:b1bf0ec6fff5
fc-simtool: pb-dump: first round of bugfixes
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 25 Jan 2021 05:59:33 +0000 |
parents | e5d89313bc00 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= ftee-gen2232c ftee-gen2232h ftee-gen232r ftee-mkblank fteeprom-erase \ fteeprom-prog fteeprom-read INSTBIN=/opt/freecalypso/bin all: ${PROGS} ftee-gen2232c: ftee-gen2232c.c ${CC} ${CFLAGS} -o $@ $@.c ftee-gen2232h: ftee-gen2232h.c ${CC} ${CFLAGS} -o $@ $@.c ftee-gen232r: ftee-gen232r.c ${CC} ${CFLAGS} -o $@ $@.c ftee-mkblank: ftee-mkblank.c ${CC} ${CFLAGS} -o $@ $@.c fteeprom-erase: fteeprom-erase.c ${CC} ${CFLAGS} -o $@ $@.c -lftdi fteeprom-prog: fteeprom-prog.c ${CC} ${CFLAGS} -o $@ $@.c -lftdi fteeprom-read: fteeprom-read.c ${CC} ${CFLAGS} -o $@ $@.c -lftdi install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f ${PROGS} *.o *errs *.out