]>
Commit | Line | Data |
---|---|---|
7921cf2b | 1 | # |
8e0080ee | 2 | # File: makefile.g95 |
7921cf2b JS |
3 | # Author: Julian Smart |
4 | # Created: 1993 | |
5 | # Updated: | |
f0f7bd8a | 6 | # Copyright: |
7921cf2b JS |
7 | # |
8 | # "%W% %G%" | |
9 | # | |
10 | # Makefile for server/client example (UNIX). | |
11 | ||
8e0080ee JS |
12 | all: |
13 | make -f client.g95 all | |
14 | make -f server.g95 all | |
7921cf2b JS |
15 | |
16 | clean: | |
8e0080ee JS |
17 | make -f client.g95 clean |
18 | make -f server.g95 clean | |
19 |