mirror of https://github.com/mpv-player/mpv
47 lines
736 B
Makefile
47 lines
736 B
Makefile
|
|
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)
|
|
# OBJS = $(SRCS:.c,.s=.o)
|
|
CFLAGS = $(OPTFLAGS)
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
# .PHONY: all clean
|
|
|
|
.c.o:
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
.s.o:
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
libMP3.a: $(OBJS)
|
|
$(AR) r libMP3.a $(OBJS)
|
|
|
|
test1: libMP3.a test.c
|
|
$(CC) $(CFLAGS) test.c -o test1 -I.. -L. -lMP3 -lm
|
|
|
|
test2: libMP3.a test2.c
|
|
$(CC) $(CFLAGS) test2.c -o test2 -I.. -L. -lMP3 -lm
|
|
|
|
all: libMP3.a
|
|
|
|
clean:
|
|
rm -f *~ *.o *.a
|
|
|
|
distclean:
|
|
rm -f *~ *.o *.a Makefile.bak .depend
|
|
|
|
dep: depend
|
|
|
|
depend:
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
#
|
|
# include dependency files if they exist
|
|
#
|
|
ifneq ($(wildcard .depend),)
|
|
include .depend
|
|
endif
|