FreeCalypso > hg > freecalypso-tools
view uptools/atinterf/Makefile @ 922:3152e23399a2
document SE K2x0 FFS quirks and our support for them
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 02 Jan 2023 00:50:19 +0000 |
parents | 90d7c360a614 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROG= fcup-atinterf LIB= ../../libserial/libserial.a OBJS= ${PROG}.o ${LIB} INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin all: ${PROG} ${PROG}: ${OBJS} ${CC} ${CFLAGS} -o $@ ${OBJS} install: mkdir -p ${INSTBIN} install -c ${PROG} ${INSTBIN} clean: rm -f ${PROG} *.o *errs *.out