FreeCalypso > hg > freecalypso-tools
view ffstools/newcomp/Makefile @ 767:6717f18780d8
target-utils/simtest/simregs.h: a little white space fix
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 11 Mar 2021 23:33:51 +0000 |
parents | cae22bec3cba |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= compile-fc-batt compile-fc-batt2 compile-fc-chg tiffs-mkfile INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin all: ${PROGS} compile-fc-batt: compile-fc-batt.c ${CC} ${CFLAGS} -o $@ $@.c compile-fc-batt2: compile-fc-batt2.c ${CC} ${CFLAGS} -o $@ $@.c compile-fc-chg: compile-fc-chg.c ${CC} ${CFLAGS} -o $@ $@.c tiffs-mkfile: tiffs-mkfile.c ${CC} ${CFLAGS} -o $@ $@.c install: ${PROGS} mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f ${PROGS}