mirror of
https://github.com/mpv-player/mpv
synced 2024-11-11 00:15:33 +01:00
76c7e8371b
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3992 b3059339-0415-0410-9bf9-f77b7e298cf2
40 lines
491 B
Makefile
40 lines
491 B
Makefile
|
|
LIBNAME = libvidix.a
|
|
|
|
include ../config.mak
|
|
|
|
SRCS = vidixlib.c
|
|
OBJS = $(SRCS:.c=.o)
|
|
|
|
CFLAGS = $(OPTFLAGS) -W -Wall
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
# .PHONY: all clean
|
|
|
|
.c.o:
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
$(LIBNAME): $(OBJS)
|
|
$(AR) r $(LIBNAME) $(OBJS)
|
|
|
|
all: $(LIBNAME)
|
|
|
|
clean:
|
|
rm -f *.o *.a *~
|
|
|
|
distclean:
|
|
rm -f test *.o *.a *~ .depend
|
|
|
|
dep: depend
|
|
|
|
depend:
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
#
|
|
# include dependency files if they exist
|
|
#
|
|
ifneq ($(wildcard .depend),)
|
|
include .depend
|
|
endif
|