changeset 18:db40f957950f

Replaced the shell scripts with a Makefile
author darius
date Thu, 23 Apr 1998 22:58:04 +0000
parents 80fa6dd10e14
children 84565bb86869
files Makefile build-mikmod.sh clean-mikmod.sh
diffstat 3 files changed, 11 insertions(+), 23 deletions(-) [+]
line wrap: on
line diff
--- /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 )
+
--- 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.
--- 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.