1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-29 10:32:15 +00:00
mpv/mpcommon.mak
diego f415c639b9 Move common code to mpcommon.mak.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21323 b3059339-0415-0410-9bf9-f77b7e298cf2
2006-11-27 13:32:24 +00:00

42 lines
605 B
Makefile

SRCS += $(SRCS-yes)
SRCS2 += $(SRCS2-yes)
LIBAV_INC += $(LIBAV_INC-yes)
OBJS = $(SRCS:.c=.o)
OBJS := $(OBJS:.S=.o)
OBJS := $(OBJS:.cpp=.o)
OBJS := $(OBJS:.m=.o)
OBJS2 = $(SRCS2:.c=.o)
CFLAGS += -I. -I.. $(OPTFLAGS)
.SUFFIXES: .c .o
.c.o:
$(CC) -c $(CFLAGS) -o $@ $<
LIBS = $(LIBNAME) $(LIBNAME2)
all: $(LIBS)
$(LIBNAME): $(OBJS)
$(AR) r $@ $^
$(RANLIB) $@
$(LIBNAME2): $(OBJS2)
$(AR) r $@ $^
$(RANLIB) $@
clean::
rm -f *.o *.a *~
distclean:: clean
rm -f .depend
dep depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
ifneq ($(wildcard .depend),)
include .depend
endif