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

File: [local] / OpenXM / src / Ti / Attic / Makefile (download)

Revision 1.2, Mon Nov 22 04:22:54 1999 UTC (24 years, 6 months ago) by takayama
Branch: MAIN
Changes since 1.1: +2 -0 lines

I cleaned the top level Makefile.
Targets are all, clean, distclean.
Install target will be added in a future.
Makefile.pari-asir will be removed soon.

#$OpenXM: OpenXM/src/Ti/Makefile,v 1.2 1999/11/22 04:22:54 takayama Exp $
# Main Make File For Spin 0.0

# specify compiler and compiler flags
# note to use profiling need -pg option for both compiling and linking
CC = gcc
CFLAGS = -O3

Lib_Dirs = 
Libs = -lm 

.C.o:
	$(CC) -c $(CFLAGS) $*.C 

all:  tigers
install : all
	cp -f tigers ../../bin 

objA = utime.o  exsearch.o call.o gset.o binomial.o utils.o Rsimp.o tigers.o matrices.o toric.o Ihermite.o
tigers: $(objA) ;
	$(CC)  $(LDFLAGS)  $(objA)  -o tigers $(Lib_Dirs) $(Libs)


clean:
	/bin/rm -rf *.o *~ tigers