source:
trunk/oar/Makefile
@
17
Last change on this file since 17 was 17, checked in by , 13 years ago | |
---|---|
|
|
File size: 217 bytes |
Rev | Line | |
---|---|---|
[17] | 1 | |
2 | CC=mpiCC | |
3 | CCFLAGS=-O2 | |
4 | ||
5 | .PHONY: all clean distclean | |
6 | ||
7 | all: mpilauncher | |
8 | ||
9 | clean: | |
10 | rm -f *.o | |
11 | ||
12 | distclean: clean | |
13 | rm -f mpilauncher | |
14 | ||
15 | ||
16 | mpilauncher: mpilauncher.o | |
17 | $(CC) $(CCFLAGS) -o $@ $< | |
18 | ||
19 | %.o: %.cpp | |
20 | $(CC) $(CCFLAGS) -c $< |
Note: See TracBrowser
for help on using the repository browser.