forked from andreww/fox
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cutdown target should remove .gitignore
add default empty arch.make
- Loading branch information
Toby White
committed
Jan 17, 2008
1 parent
7e9f4e6
commit 6c41d14
Showing
2 changed files
with
43 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
.SUFFIXES: | ||
.SUFFIXES: .o .a .f90 .F90 .m4 .exe .xml | ||
|
||
BUILD_TARGETS=wxml_lib wcml_lib sax_lib dom_lib | ||
|
||
compile_prefix=/Users/tow/devel/FoX/objs | ||
install_prefix=/usr/local | ||
LIB_DIR=$(compile_prefix)/lib | ||
MOD_DIR=$(compile_prefix)/finclude | ||
|
||
FPP= | ||
FC=g95 | ||
RANLIB=ranlib | ||
|
||
FFLAGS=-g -O2 | ||
FPPFLAGS= -DFC_HAVE_FLUSH -DFC_HAVE_ABORT -DFC_ABORT_ARG | ||
LDFLAGS= | ||
|
||
FCFLAGS_free_f90= | ||
FPPFLAGS_free_F90= | ||
|
||
INC_PREFIX=-I | ||
MOD_PREFIX=-I | ||
LIB_PREFIX=-L | ||
# | ||
MOD_EXT=mod | ||
MKDIR_P=/sw/bin/mkdir -p | ||
INSTALL=/sw/bin/ginstall -c | ||
OBJEXT=o | ||
EXEEXT= | ||
LIBEXT=a | ||
LINK_O_FLAG=-o | ||
|
||
#INCFLAGS must be set by the user makefile | ||
|
||
#Dependency rules are created by autoconf according to whether | ||
#discrete preprocessing is necessary or not. | ||
.F90.o: | ||
$(FC) -c $(FFLAGS) $(INCFLAGS) $(FPPFLAGS) $(FPPFLAGS_free_F90) $< | ||
.f90.o: | ||
$(FC) -c $(FFLAGS) $(INCFLAGS) $(FCFLAGS_free_f90) $< | ||
|