[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / mpfr / bfsize

File: [local] / OpenXM / src / mpfr / bfsize / Makefile (download)

Revision 1.2, Tue Jun 14 06:59:50 2016 UTC (7 years, 11 months ago) by takayama
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +3 -0 lines

Added the OpenXM tag.

OpenXM_HOME=../../..
OpenXM_LIBDIR=-L$(OpenXM_HOME)/lib
LIBS = -lmpfr  -lgmp
INCLUDES = -I$(OpenXM_HOME)/include
CFLAGS = -g -Wall -finline-functions -D_POSIX_C_SOURCE


all: bfsize

bfsize : bfsize.c
	$(CC) $(CFLAGS) $(INCLUDES) $(OpenXM_LIBDIR) $< $(LIBS) -o bfsize
clean:
	rm -f bfsize.exe bfsize *~ a.out a.exe

# $OpenXM: OpenXM/src/mpfr/bfsize/Makefile,v 1.2 2016/06/14 06:59:50 takayama Exp $