2001-02-24 20:28:24 +00:00
|
|
|
|
|
|
|
include config.mak
|
|
|
|
|
|
|
|
SRCS = sr1.c d_cpu.s decode_i586.s $(OPTIONAL_SRCS)
|
|
|
|
OBJS = sr1.o d_cpu.o decode_i586.o $(OPTIONAL_OBJS)
|
|
|
|
CFLAGS = $(OPTFLAGS)
|
|
|
|
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
|
|
|
|
# .PHONY: all clean
|
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
.s.o:
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
2001-03-02 21:47:18 +00:00
|
|
|
libMP3.a: .depend $(OBJS)
|
2001-02-24 20:28:24 +00:00
|
|
|
$(AR) r libMP3.a $(OBJS)
|
|
|
|
|
2001-05-13 19:18:52 +00:00
|
|
|
test1: libMP3.a test.c
|
2001-05-17 18:20:14 +00:00
|
|
|
$(CC) $(CFLAGS) test.c -o test1 -I.. -L. -lMP3 -lm
|
2001-05-13 19:18:52 +00:00
|
|
|
|
|
|
|
test2: libMP3.a test2.c
|
2001-05-17 18:20:14 +00:00
|
|
|
$(CC) $(CFLAGS) test2.c -o test2 -I.. -L. -lMP3 -lm
|
2001-05-13 18:58:23 +00:00
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
all: libMP3.a
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *~ *.o *.a
|
|
|
|
|
|
|
|
distclean:
|
2001-03-02 21:47:18 +00:00
|
|
|
rm -f *~ *.o *.a Makefile.bak .depend
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-03-02 21:47:18 +00:00
|
|
|
dep: depend
|
|
|
|
depend: .depend
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-03-02 21:47:18 +00:00
|
|
|
.depend: Makefile config.mak ../config.mak ../config.h
|
|
|
|
makedepend -f- -- $(CFLAGS) -- $(SRCS) 1>.depend 2>/dev/null
|
|
|
|
|
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|