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

Annotation of OpenXM/src/Ti/Makefile, Revision 1.2

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>