[BACK]Return to Makefile.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / oxc

File: [local] / OpenXM / src / oxc / Makefile.in (download)

Revision 1.8, Tue Aug 4 07:15:37 2015 UTC (8 years, 9 months ago) by ohara
Branch: MAIN
Changes since 1.7: +2 -2 lines

Add -lmpfr to Makefile.in

## $OpenXM: OpenXM/src/oxc/Makefile.in,v 1.8 2015/08/04 07:15:37 ohara Exp $

OpenXM_HOME=../..
CC         = @CC@
CFLAGS     = @CFLAGS@ -g -Wall -O2 -finline-functions -I${OpenXM_HOME}/src/ox_toolkit -I${OpenXM_HOME}/include
LIBS       = @LIBS@ -L${OpenXM_HOME}/lib -lox -lgc -lmpfr -lgmp
INSTALL    = @INSTALL@
INSTALL_PROGRAM= ${INSTALL}

all: oxc

oxc: oxc.o sm.o sm_ext.o
	${CC} -o oxc oxc.o sm.o sm_ext.o ${LIBS}

sm.o sm_ext.o : sm.h

install: oxc
	${INSTALL_PROGRAM} oxc ${OpenXM_HOME}/bin

install-for-debug: oxc
	ln -sf `pwd`/oxc ${OpenXM_HOME}/bin

clean:
	-rm -f *.o *~ oxc

distclean: clean
	-rm -f .configure_done config.cache config.log config.status Makefile