Skip to content
Snippets Groups Projects
Commit c0bc5c8a authored by Douglas Guptill's avatar Douglas Guptill
Browse files

tweaks

parent 4dc798da
No related branches found
No related tags found
No related merge requests found
...@@ -80,6 +80,8 @@ $(BIN): subdirs $(OBJECTS) ...@@ -80,6 +80,8 @@ $(BIN): subdirs $(OBJECTS)
>$(BIN).link.stdout >$(BIN).link.stdout
$(F90) $(FFLAGS) $(OPTIONS) $(OBJECTS) $(LIBS) -o $(BIN) \ $(F90) $(FFLAGS) $(OPTIONS) $(OBJECTS) $(LIBS) -o $(BIN) \
1>>$(BIN).link.stdout 2>>$(BIN).link.stderr 1>>$(BIN).link.stdout 2>>$(BIN).link.stderr
# not on the p690...
ldd $(BIN) >>$(BIN).link.stdout ldd $(BIN) >>$(BIN).link.stdout
...@@ -125,12 +127,15 @@ more-output: ...@@ -125,12 +127,15 @@ more-output:
@if test -e $(BIN).link.stderr ; then more $(BIN).link.stderr ; fi @if test -e $(BIN).link.stderr ; then more $(BIN).link.stderr ; fi
.PHONY: mahone .PHONY: mahone
mahone: mahone::
cp -f Makefile.mahone Makefile.deps cp -f Makefile.mahone Makefile.deps
.PHONY: p690 .PHONY: p690
p690: p690::
cp -f Makefile.p690 Makefile.deps cp -f Makefile.p690 Makefile.deps
@echo "If using WSMP, OBJECT_MODE must be 64"
@if test "x${OBJECT_MODE}" != x64 ; then export OBJECT_MODE=64; fi
@echo "OBJECT_MODE should be 64, is ${OBJECT_MODE}"
# end of file # end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment