source: trunk/tools/easymesh/Makefile @ 19

Last change on this file since 19 was 11, checked in by mmc, 19 years ago

Major reorganization of the entire package. The config.xml file
is now irrelevant. All the action is in the tool.xml file. The
main program now organizes all input into 1) side-by-side pages,
2) input/result (wizard-style) pages, or 3) a series of wizard-
style pages. The <input> can have <phase> parts representing
the various pages.

Added a new ContourResult? widget based on Swaroop's vtk plotting
code.

Also, added easymesh and showmesh to the "tools" directory.
We need these for Eric Polizzi's code.

File size: 277 bytes
Line 
1#
2# Simple makefile for building EasyMesh
3#
4CC = gcc
5CFLAGS = -O3
6LIBS = -L/usr/X11R6/lib -lX11 -lm
7
8all: easymesh showmesh
9
10easymesh: easymesh_1_4.c
11        $(CC) $(CFLAGS) $< -o $@ $(LIBS)
12
13showmesh: showmesh_1_0.c
14        $(CC) $(CFLAGS) $< -o $@ $(LIBS)
15
16clean:
17        rm -f easymesh showmesh
Note: See TracBrowser for help on using the repository browser.