File: make.test

package info (click to toggle)
sprng 2.0a-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,076 kB
  • ctags: 2,031
  • sloc: ansic: 30,361; fortran: 1,618; makefile: 566; cpp: 58; sh: 5
file content (25 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
SHELL = /bin/sh
include ../make.CHOICES
SRCDIR = ../SRC
include $(SRCDIR)/make.$(PLAT)

.SUFFIXES :

.SUFFIXES : .f .F


.F.f : 
	@if [ -f $*.i ] ; then \
	rm $*.i ;\
	fi 
	$(CPP) -I../SRC -DCONVERT $*.F
	@if [ -f $*.i ] ; then \
	mv $*.i  $*.f ;\
	fi 

#.F.f: 
#	$(CPP) -WF,-I$(SRCDIR)  -WF,-DCONVERT $*.F
#	@if [ -f F$*.f ] ; then \
#	mv F$*.f  $*.f ;\
#	fi