diff options
| author | Tor Aamodt <[email protected]> | 2010-07-15 18:09:46 -0800 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2010-07-15 18:09:46 -0800 |
| commit | 69f2911e04ffb1b19eef1fafb8c040af271f656e (patch) | |
| tree | 231d3b6bdc3a202f7c255bfcf7bf2c36e32cee9e /benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/ParMETISLib/Makefile | |
creating branch for adding support for CUDA 3.x and Fermi
[git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 6829]
Diffstat (limited to 'benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/ParMETISLib/Makefile')
| -rw-r--r-- | benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/ParMETISLib/Makefile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/ParMETISLib/Makefile b/benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/ParMETISLib/Makefile new file mode 100644 index 0000000..3281a07 --- /dev/null +++ b/benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/ParMETISLib/Makefile @@ -0,0 +1,48 @@ +include ../Makefile.in + + +CFLAGS = $(COPTIONS) $(OPTFLAGS) -I. $(INCDIR) + + +OBJS = comm.o util.o debug.o setup.o grsetup.o timer.o \ + node_refine.o initmsection.o order.o \ + xyzpart.o pspases.o frename.o \ + iintsort.o iidxsort.o ikeysort.o ikeyvalsort.o \ + kmetis.o gkmetis.o ometis.o \ + initpart.o match.o coarsen.o \ + kwayfm.o kwayrefine.o kwaybalance.o \ + remap.o stat.o fpqueue.o \ + ametis.o rmetis.o lmatch.o initbalance.o \ + mdiffusion.o diffutil.o wave.o \ + csrmatch.o redomylink.o balancemylink.o \ + selectq.o akwayfm.o serial.o move.o \ + mmetis.o mesh.o memory.o weird.o backcompat.o + +.c.o: + $(CC) $(CFLAGS) -c $*.c + + +../libparmetis.a: $(OBJS) + $(AR) $@ $(OBJS) + $(RANLIB) $@ + +clean: + rm -f *.o + +realclean: + rm -f *.o ; rm -f ../libparmetis.a + + +checkin: + @for file in *.[c,h]; \ + do \ + ci -u -m'Maintance' $$file;\ + done + +checkin2: + @for file in *.[c,h]; \ + do \ + ci $$file;\ + rcs -U $$file;\ + co $$file;\ + done |
