Annotation of OpenXM/src/Ti/Makefile, Revision 1.1
1.1 ! maekawa 1: # Main Make File For Spin 0.0
! 2:
! 3: # specify compiler and compiler flags
! 4: # note to use profiling need -pg option for both compiling and linking
! 5: CC = gcc
! 6: CFLAGS = -O3
! 7:
! 8: Lib_Dirs =
! 9: Libs = -lm
! 10:
! 11: .C.o:
! 12: $(CC) -c $(CFLAGS) $*.C
! 13:
! 14: all: tigers
! 15: cp -f tigers ../../bin
! 16:
! 17: objA = utime.o exsearch.o call.o gset.o binomial.o utils.o Rsimp.o tigers.o matrices.o toric.o Ihermite.o
! 18: tigers: $(objA) ;
! 19: $(CC) $(LDFLAGS) $(objA) -o tigers $(Lib_Dirs) $(Libs)
! 20:
! 21:
! 22: clean:
! 23: /bin/rm -rf *.o *~ tigers
! 24:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>