summaryrefslogtreecommitdiff
path: root/benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/Programs/Makefile
diff options
context:
space:
mode:
authorTor Aamodt <[email protected]>2010-10-01 08:55:28 -0800
committerTor Aamodt <[email protected]>2010-10-01 08:55:28 -0800
commit11b308e7363e937966b035b4891db32b4eece3bf (patch)
tree50ca4c9ad6f163ac4acb2bf505e64dfebed66947 /benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/Programs/Makefile
parentbb820c116764d7a1b8e071137d32b74e7f34dd2f (diff)
integrating recent changes from fermi-test into fermi
(i'll use "fermi" for more disruptive changes to the pipeline model such as updating the MSHRs and getting rid of the warp tracker, ripping out DWF, etc...) [git-p4: depot-paths = "//depot/gpgpu_sim_research/fermi/distribution/": change = 7805]
Diffstat (limited to 'benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/Programs/Makefile')
-rw-r--r--benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/Programs/Makefile56
1 files changed, 0 insertions, 56 deletions
diff --git a/benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/Programs/Makefile b/benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/Programs/Makefile
deleted file mode 100644
index 0254eec..0000000
--- a/benchmarks/CUDA/DG/3rdParty/ParMetis-3.1/Programs/Makefile
+++ /dev/null
@@ -1,56 +0,0 @@
-include ../Makefile.in
-
-BINDIR = ../Graphs
-
-INCLUDES = -I./ -I../ParMETISLib $(INCDIR)
-CFLAGS = $(COPTIONS) $(OPTFLAGS) $(INCLUDES)
-
-
-LIBSDIR = -L.. $(LIBDIR)
-LIBS = -lparmetis -lmetis $(XTRALIBS) -lm
-PARMETISLIB = ../libparmetis.a ../libmetis.a
-
-
-PTESTOBJS = ptest.o io.o adaptgraph.o
-MESHTESTOBJS = mtest.o io.o
-PARMETISOBJS = parmetis.o io.o adaptgraph.o
-
-
-.c.o:
- $(CC) $(CFLAGS) -c $*.c
-
-
-default: $(BINDIR)/ptest$(VERNUM) $(BINDIR)/mtest$(VERNUM)
-
-$(BINDIR)/mtest$(VERNUM): $(MESHTESTOBJS) $(PARMETISLIB)
- $(LD) -o $@ $(MESHTESTOBJS) $(LIBSDIR) $(LIBS)
- chmod 744 $@
-
-$(BINDIR)/ptest$(VERNUM): $(PTESTOBJS) $(PARMETISLIB)
- $(LD) -o $@ $(PTESTOBJS) $(LIBSDIR) $(LIBS)
- chmod 744 $@
-
-clean:
- rm -f *.o ;\
- rm -f $(BINDIR)/ptest$(VERNUM)
- rm -f $(BINDIR)/mtest$(VERNUM)
-
-realclean:
- rm -f *.o ;\
- rm -f $(BINDIR)/ptest$(VERNUM)
- rm -f $(BINDIR)/mtest$(VERNUM)
-
-
-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