diff frontend/Makefile @ 16:e5529b6e3b1c

Inistal commit of the Cheesy Mod Player (tm)
author darius
date Thu, 23 Apr 1998 07:35:49 +0000
parents
children eb5b14d0e054
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/frontend/Makefile	Thu Apr 23 07:35:49 1998 +0000
@@ -0,0 +1,18 @@
+#OBJS = mikmodux.o mlist.o display.o marchive.o
+OBJS = mikmodux.o mlist.o
+LIBDIR = ../lib
+INCLUDEDIR = ../include
+
+CFLAGS = -g -I$(INCLUDEDIR)
+
+mikmod: $(OBJS) $(LIBDIR)/libmikmod.a $(LIBDIR)/libmmio.a
+	gcc -o mikmod $(OBJS) -L$(LIBDIR) -lmikmod -lmmio -lncurses
+
+mikmodux.o: mikmodux.c
+	gcc -c -o mikmodux.o $(CFLAGS) mikmodux.c
+
+mlist.o: mlist.c
+	gcc -c -o mlist.o $(CFLAGS) mlist.c
+
+clean: 
+	rm $(OBJS) mikmod