# HG changeset patch # User darius # Date 893372284 0 # Node ID db40f957950fed1ef4627e86b39cbafc4d876a20 # Parent 80fa6dd10e145ec171e08b1174790d20ecaf78fe Replaced the shell scripts with a Makefile diff -r 80fa6dd10e14 -r db40f957950f Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Thu Apr 23 22:58:04 1998 +0000 @@ -0,0 +1,11 @@ +CC = gcc +CLFAGS = -g +LFLAGS = + +all : mikmod + +mikmod : + ( cd mmio ; gmake ) + ( cd playercode ; gmake ) + ( cd frontend ; gmake ) + diff -r 80fa6dd10e14 -r db40f957950f build-mikmod.sh --- a/build-mikmod.sh Thu Apr 23 22:54:49 1998 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -#!/bin/sh -cd playercode -make -cd .. -cd mmio -make -cd .. -cd examples/unix -make -cp mikmod ../.. -cd ../.. -strip mikmod -echo All done. diff -r 80fa6dd10e14 -r db40f957950f clean-mikmod.sh --- a/clean-mikmod.sh Thu Apr 23 22:54:49 1998 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ -#!/bin/sh -cd playercode -make clean -cd .. -cd mmio -make clean -cd .. -cd examples/unix -make clean -echo All clean.