mirror of
https://github.com/mpv-player/mpv
synced 2024-12-14 19:05:33 +00:00
7a2eec4b59
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@955 b3059339-0415-0410-9bf9-f77b7e298cf2
42 lines
600 B
Makefile
42 lines
600 B
Makefile
|
|
include ../config.mak
|
|
|
|
LIBNAME = libao.a
|
|
|
|
SRCS=audio_out.c ao_oss.c ao_null.c
|
|
OBJS=$(SRCS:.c=.o)
|
|
|
|
CFLAGS = $(OPTFLAGS) -I. -I..
|
|
# -I/usr/X11R6/include/
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
# .PHONY: all clean
|
|
|
|
.c.o:
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
$(LIBNAME): .depend $(OBJS)
|
|
$(AR) r $(LIBNAME) $(OBJS)
|
|
|
|
all: $(LIBNAME)
|
|
|
|
clean:
|
|
rm -f *.o *.a *~
|
|
|
|
distclean:
|
|
rm -f Makefile.bak *.o *.a *~ .depend
|
|
|
|
dep: depend
|
|
depend: .depend
|
|
|
|
.depend: Makefile ../config.mak ../config.h
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
#
|
|
# include dependency files if they exist
|
|
#
|
|
ifneq ($(wildcard .depend),)
|
|
include .depend
|
|
endif
|