changeset 0 | 5fda18b64dcb |
-1:000000000000 | 0:704196f0118c |
---|---|
1 FC=gfortran |
|
2 FFLAGS=-O |
|
3 SRCS=realizer_mod.f90 realizer_pro.f90 |
|
4 OBJS=realizer_mod.o realizer_pro.o |
|
5 |
|
6 .SUFFIXES : .o .f90 |
|
7 |
|
8 .f90.o: |
|
9 $(FC) $(FFLAGS) -c $< |
|
10 |
|
11 realizer: $(OBJS) |
|
12 $(FC) $(FFLAGS) -o $@ $(OBJS) |
|
13 |
|
14 install: realizer |
|
15 cp -p $< /usr/local/bin/ |
|
16 |
|
17 clean: |
|
18 rm -f realizer realizer_mod.mod realizer_mod.o realizer_pro.o core |
|
19 |