FreeCalypso > hg > fc-sim-tools
view uicc/Makefile @ 91:abef3d5668b9
fc-uicc-tool: restore-file ported over from fc-simtool
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 11 Apr 2021 04:44:34 +0000 |
parents | 3afa61d98961 |
children | 5560261fc516 |
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 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