FreeCalypso > hg > fc-sim-tools
view uicc/Makefile @ 83:3055d5c9e7a3
fc-simtool update-rec* commands: check curfile_record_len
and error out if it is not set
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 11 Apr 2021 02:38:31 +0000 |
parents | 97646b363eaa |
children | db131929ee96 |
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 readops.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