annotate Makefile @ 22:d9f79436e0af default tip

Makefile Add ranlib for the library
author darius
date Fri, 24 Apr 1998 08:05:26 +0000
parents 84565bb86869
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18
db40f957950f Replaced the shell scripts with a Makefile
darius
parents:
diff changeset
1 CC = gcc
db40f957950f Replaced the shell scripts with a Makefile
darius
parents:
diff changeset
2 CLFAGS = -g
db40f957950f Replaced the shell scripts with a Makefile
darius
parents:
diff changeset
3 LFLAGS =
db40f957950f Replaced the shell scripts with a Makefile
darius
parents:
diff changeset
4
db40f957950f Replaced the shell scripts with a Makefile
darius
parents:
diff changeset
5 all : mikmod
db40f957950f Replaced the shell scripts with a Makefile
darius
parents:
diff changeset
6
db40f957950f Replaced the shell scripts with a Makefile
darius
parents:
diff changeset
7 mikmod :
db40f957950f Replaced the shell scripts with a Makefile
darius
parents:
diff changeset
8 ( cd mmio ; gmake )
db40f957950f Replaced the shell scripts with a Makefile
darius
parents:
diff changeset
9 ( cd playercode ; gmake )
db40f957950f Replaced the shell scripts with a Makefile
darius
parents:
diff changeset
10 ( cd frontend ; gmake )
db40f957950f Replaced the shell scripts with a Makefile
darius
parents:
diff changeset
11
19
84565bb86869 Makefile
darius
parents: 18
diff changeset
12 clean :
84565bb86869 Makefile
darius
parents: 18
diff changeset
13 ( cd mmio ; gmake clean )
84565bb86869 Makefile
darius
parents: 18
diff changeset
14 ( cd playercode ; gmake clean )
84565bb86869 Makefile
darius
parents: 18
diff changeset
15 ( cd frontend ; gmake clean )
84565bb86869 Makefile
darius
parents: 18
diff changeset
16