Parent Directory
|
Revision Log
|
Revision Graph
Added in allocation of different models to different CPU sets etc..
1 | ifndef MAKEFILE_LOCAL |
2 | MAKEFILE_LOCAL=Makefile.local |
3 | endif |
4 | include $(MAKEFILE_LOCAL) |
5 | |
6 | .SUFFIXES: |
7 | .SUFFIXES: .F90 .o |
8 | |
9 | OBJS = prmtop.o main.o |
10 | |
11 | a.out: $(OBJS) |
12 | $(F90) $(F90FLAGS) $(OBJS) |
13 | |
14 | .F90.o: |
15 | $(F90) $(F90FLAGS) -c $< |
16 | |
17 | .mod.x: |
18 | echo dummy rule |
19 | |
20 | relink: |
21 | make clean |
22 | make |
23 | |
24 | clean: |
25 | @ rm a.out |
26 | @ rm *.o |
27 | @ rm *.mod |
ViewVC Help | |
Powered by ViewVC 1.1.22 |