ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/tags/start/xLate/Makefile
Revision: 3484
Committed: Tue Jan 13 14:39:51 2009 UTC (15 years, 8 months ago)
File size: 355 byte(s)
Log Message:
This commit was manufactured by cvs2svn to create tag 'start'.

File Contents

# User Rev Content
1 mmeineke 18 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