source: trunk/oar/Makefile @ 17

Last change on this file since 17 was 17, checked in by g7moreau, 12 years ago
  • MPI launcher
  • Property svn:eol-style set to native
File size: 217 bytes
Line 
1
2CC=mpiCC
3CCFLAGS=-O2
4
5.PHONY: all clean distclean
6
7all: mpilauncher
8
9clean:
10        rm -f *.o
11
12distclean: clean
13        rm -f mpilauncher
14
15
16mpilauncher: mpilauncher.o
17        $(CC) $(CCFLAGS) -o $@ $<
18
19%.o: %.cpp
20        $(CC) $(CCFLAGS) -c $<
Note: See TracBrowser for help on using the repository browser.