ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/xLate/Makefile
Revision: 18
Committed: Tue Jul 9 18:46:04 2002 UTC (22 years ago) by mmeineke
Original Path: branches/mmeineke/xLate/Makefile
File size: 355 byte(s)
Log Message:
translates BASS dumps to xyz files

File Contents

# Content
1 CC=/usr/local/bin/gcc
2 FC=ifc
3 LIBDIR=$(HOME)/simulations/unified_atom/lib
4 INCDIR=$(HOME)/simulations/unified_atom/inc
5 BINDIR=$(HOME)/bin
6
7 FFLAGS=-O3
8 CFLAGS=-O3
9
10
11 all: $(BINDIR)/xLate
12
13 $(BINDIR)/xLate: xLate.o
14 $(FC) $(FFLAGS) -o $@ -L/usr/local/lib -L$(LIBDIR) xLate.o -lstdc++ -lmdtools -lm
15
16 xLate.o: xLate.cpp
17 $(CC) $(CFLAGS) -c $?
18
19 clean:
20 rm *~ *.o
21
22