FreeCalypso > hg > fc-sim-tools
view uicc/Makefile @ 92:5560261fc516
fc-uicc-tool: erase-file ported over from fc-simtool
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 11 Apr 2021 04:55:02 +0000 |
parents | abef3d5668b9 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 CPPFLAGS=-I../libcommon PROG= fc-uicc-tool OBJS= bfsearch.o cmdtab.o createfile.o dumpdir.o erasefile.o getresp.o \ hlread.o main.o pins.o readcmd.o readef.o readops.o restorebin.o \ savebin.o select.o sws.o writecmd.o writeops.o LIBS= ../libcommon/libcommon.a ../libutil/libutil.a INSTALL_PREFIX= /opt/freecalypso INSTBIN=${INSTALL_PREFIX}/bin all: ${PROG} ${PROG}: ${OBJS} ${LIBS} ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS} install: mkdir -p ${INSTBIN} install -c ${PROG} ${INSTBIN} clean: rm -f ${PROG} *.o