ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/xLate/Makefile
Revision: 19
Committed: Tue Jul 9 18:46:04 2002 UTC (21 years, 11 months ago) by mmeineke
File size: 355 byte(s)
Log Message:
This commit was generated by cvs2svn to compensate for changes in r18, which
included commits to RCS files with non-trunk default branches.

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