annotate frontend/Makefile @ 21:eb5b14d0e054

Makefile unneeded rule mikmodux.h Fix MODULE
author darius
date Fri, 24 Apr 1998 08:04:39 +0000
parents e5529b6e3b1c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
1 #OBJS = mikmodux.o mlist.o display.o marchive.o
21
eb5b14d0e054 Makefile
darius
parents: 16
diff changeset
2 OBJS = mikmodux.o
16
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
3 LIBDIR = ../lib
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
4 INCLUDEDIR = ../include
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
5
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
6 CFLAGS = -g -I$(INCLUDEDIR)
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
7
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
8 mikmod: $(OBJS) $(LIBDIR)/libmikmod.a $(LIBDIR)/libmmio.a
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
9 gcc -o mikmod $(OBJS) -L$(LIBDIR) -lmikmod -lmmio -lncurses
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
10
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
11 mikmodux.o: mikmodux.c
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
12 gcc -c -o mikmodux.o $(CFLAGS) mikmodux.c
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
13
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
14 mlist.o: mlist.c
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
15 gcc -c -o mlist.o $(CFLAGS) mlist.c
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
16
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
17 clean:
e5529b6e3b1c Inistal commit of the Cheesy Mod Player (tm)
darius
parents:
diff changeset
18 rm $(OBJS) mikmod