annotate Makefile @ 18:db40f957950f

Replaced the shell scripts with a Makefile
author darius
date Thu, 23 Apr 1998 22:58:04 +0000
parents
children 84565bb86869
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