[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.1, Tue Jun 14 06:58:59 2016 UTC (7 years, 11 months ago) by takayama
Branch: MAIN

A code to see the internal structure of mpfr big float.

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