1
mirror of https://github.com/mpv-player/mpv synced 2024-09-16 22:19:59 +02:00
mpv/mpcommon.mak
diego c00059b047 Remove suffix rules that are just copies of make builtin rules.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21436 b3059339-0415-0410-9bf9-f77b7e298cf2
2006-12-02 12:08:25 +00:00

34 lines
528 B
Makefile

SRCS += $(SRCS-yes)
SRCS2 += $(SRCS2-yes)
CFLAGS += $(CFLAGS-yes)
OBJS = $(addsuffix .o, $(basename $(SRCS)) )
OBJS2 = $(addsuffix .o, $(basename $(SRCS2)) )
CFLAGS += -I. -I.. $(OPTFLAGS)
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