view ffstools/cal2text/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 b73c21a2148f
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	fc-cal2text
OBJS=	dircheck.o main.o mkdir.o
LIBS=	../../librftab/librftab.a

INSTALL_PREFIX=	/opt/freecalypso

INSTBIN=${INSTALL_PREFIX}/bin

all:	${PROG}

${PROG}:	${OBJS} ${LIBS}
	${CC} -o $@ ${OBJS} ${LIBS}

install:	${PROG}
	mkdir -p ${INSTBIN}
	install -c ${PROG} ${INSTBIN}

clean:
	rm -f ${PROG} *.o *.out *errs