mirror of
https://github.com/mpv-player/mpv
synced 2024-12-16 20:05:07 +00:00
40f53feeec
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22540 b3059339-0415-0410-9bf9-f77b7e298cf2
32 lines
537 B
Makefile
32 lines
537 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)
|
|
$(LIBNAME2): $(OBJS2)
|
|
$(LIBNAME) $(LIBNAME2):
|
|
$(AR) r $@ $^
|
|
$(RANLIB) $@
|
|
|
|
clean::
|
|
rm -f *.o *.a *~
|
|
|
|
distclean:: clean
|
|
rm -f .depend
|
|
|
|
dep depend:
|
|
$(CC) -MM $(CFLAGS) $(SRCS) $(SRCS2) 1>.depend
|
|
|
|
-include .depend
|
|
|
|
.PHONY: all clean distclean dep depend
|