head	1.3;
access;
symbols
	charm6_1:1.3
	charm_6_0_1:1.3
	charm6_0_1:1.3
	charm6_0:1.3
	ChaNGa_1-0:1.3
	charm5_9:1.3;
locks; strict;
comment	@# @;


1.3
date	2005.04.01.01.25.01;	author idooley2;	state Exp;
branches;
next	1.2;

1.2
date	2005.03.30.18.26.16;	author idooley2;	state Exp;
branches;
next	1.1;

1.1
date	2005.03.15.17.36.33;	author idooley2;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Inhibit warnings by using a -w flag with gcc.
@
text
@# Modify CHAMRDIR to point to your charm installation!
#
# Actually we need the include directory, so we can make sure
# we correctly load the PUPed NetFEM file format used by your 
# programs
#
CHARMDIR = ../../../../..

#Target Executable:
DEST = NetFEM_To_Paraview

CC   = g++
FLAGS = -O -w

# Shouldn't need to modify anything else below
CHARMINC=-I$(CHARMDIR)/include
CHARMLIB=-L$(CHARMDIR)/lib -lconv-util

OBJS = 	NetFEM_To_Paraview.o 								\
		ckstandalone.o 										\
		netfem_update_vtk.o 								\
		$(CHARMDIR)/tmp/libs/ck-libs/netfem/netfem_data.o

all: $(DEST)

ckstandalone.o : $(CHARMDIR)/tmp/ckstandalone.C
	$(CC) -c $(CHARMDIR)/tmp/ckstandalone.C -o ckstandalone.o $(FLAGS) $(CHARMINC)

$(DEST): $(OBJS)
	$(CC) $(OBJS) -o $(DEST) $(FLAGS) $(CHARMINC) $(CHARMLIB)

clean:
	rm -rf $(DEST) *.o *~

.cpp.o: $(HEADERS)
	$(CC) -c $< $(FLAGS) $(CHARMINC)


@


1.2
log
@
A change of some included headers. We need these for OSX
@
text
@d13 1
a13 1
FLAGS = -O -Wno-long-double
@


1.1
log
@A standalone NetFEM to Paraview mesh file converter. Build with "make". Run executable from parent
directory of the "NetFEM" containing the chunk/timestep meshes.
@
text
@d13 1
a13 1
FLAGS = -O
@

