view libdvdcss/Makefile @ 21215:ff1ac890c40a

Unconditionally include config.mak for consistency.
author diego
date Sat, 25 Nov 2006 17:11:48 +0000
parents e7cd7283f57e
children 92b122592776
line wrap: on
line source

include ../config.mak

SRCS = css.c \
       device.c \
       error.c \
       ioctl.c \
       libdvdcss.c \
       #bsdi_ioctl \

OBJS = $(SRCS:.c=.o)

LIBNAME = libdvdcss.a

.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: $(LIBNAME)

$(LIBNAME): $(OBJS)
	$(AR) rc $@ $^
	$(RANLIB) $@

clean:
	rm -f *.o *.a *~ *.so

distclean: clean
	rm -f .depend

dep depend:
	$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend

ifneq ($(wildcard .depend),)
include .depend
endif