Mercurial > mplayer.hg
view libdvdcss/Makefile @ 20804:cfd35d61bed3
r20711: MSGTRs for demux_avi.c
r20712: better wording for "workarounding"
r20739: Remove remnants of long-gone libfame. (previously applied)
r20774: Adding ability to check allowed frequency range.
r20775: Spelling fix: Allowable -> Allowed
r20780: MSGTRs for ao_alsa.c
r20781: MSGTRs for libvo/aspect.c and libvo/vo_xv.c
r20782,r20783: (do not apply)
r20817: add full stop at end of sentence
author | kraymer |
---|---|
date | Thu, 09 Nov 2006 18:05:06 +0000 |
parents | f76c0a5509cd |
children | 618d1857f4c4 |
line wrap: on
line source
ifneq ($(wildcard ../config.mak),) include ../config.mak endif SRCS = css.c \ device.c \ error.c \ ioctl.c \ libdvdcss.c \ #bsdi_ioctl \ OBJS = $(SRCS:.c=.o) LIB=libdvdcss .SUFFIXES: .c .o CFLAGS= -I.. $(OPTFLAGS) -D__USE_UNIX98 -D_GNU_SOURCE \ -DHAVE_LIMITS_H -DHAVE_ERRNO_H -DHAVE_INTTYPES_H -DHAVE_UNISTD_H \ -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DVERSION=\"1.2.9\" ifeq ($(TARGET_OS),CYGWIN) CFLAGS+=-DSYS_CYGWIN endif ifeq ($(TARGET_OS),Darwin) CFLAGS+=-D__DARWIN__ endif .c.o: $(CC) $(CFLAGS) -c -o $@ $< all: $(LIB).a $(LIB).a: $(OBJS) $(AR) rc $(LIB).a $(OBJS) $(RANLIB) $(LIB).a clean: rm -f *.o *.a *~ *.so distclean: clean rm -f .depend dep: depend depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif