2002-08-16 22:43:44 +00:00
|
|
|
include ../config.mak
|
|
|
|
|
2006-11-03 12:25:56 +00:00
|
|
|
SRCS = dvd_input.c \
|
2005-06-30 22:41:40 +00:00
|
|
|
dvd_reader.c \
|
|
|
|
dvd_udf.c \
|
|
|
|
ifo_print.c \
|
|
|
|
ifo_read.c \
|
|
|
|
nav_print.c \
|
|
|
|
nav_read.c \
|
2005-06-30 22:48:26 +00:00
|
|
|
md5.c \
|
2002-08-16 22:43:44 +00:00
|
|
|
|
|
|
|
OBJS = $(SRCS:.c=.o)
|
|
|
|
|
2006-11-25 17:09:25 +00:00
|
|
|
LIBNAME = libdvdread.a
|
2002-08-16 22:43:44 +00:00
|
|
|
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
|
2006-11-09 18:25:42 +00:00
|
|
|
CFLAGS= -I.. $(OPTFLAGS) -D__USE_UNIX98 -D_GNU_SOURCE -DSTDC_HEADERS \
|
|
|
|
-DHAVE_LIMITS_H -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
|
|
|
|
|
|
|
|
ifeq ($(DVDCSS_INTERNAL),yes)
|
2006-11-18 00:42:25 +00:00
|
|
|
CFLAGS := -I../libdvdcss -DHAVE_DVDCSS_DVDCSS_H $(CFLAGS)
|
2006-11-09 18:25:42 +00:00
|
|
|
endif
|
2005-12-13 19:55:45 +00:00
|
|
|
|
2002-08-16 22:43:44 +00:00
|
|
|
.c.o:
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2006-11-25 17:09:25 +00:00
|
|
|
all: $(LIBNAME)
|
2002-08-16 22:43:44 +00:00
|
|
|
|
2006-11-25 17:09:25 +00:00
|
|
|
$(LIBNAME): $(OBJS)
|
|
|
|
$(AR) rc $@ $^
|
|
|
|
$(RANLIB) $@
|
2002-08-16 22:43:44 +00:00
|
|
|
|
|
|
|
clean:
|
2006-01-27 00:06:42 +00:00
|
|
|
rm -f *.o *.a *~ *.so
|
2002-08-16 22:43:44 +00:00
|
|
|
|
|
|
|
distclean: clean
|
2006-01-27 00:06:42 +00:00
|
|
|
rm -f .depend
|
2002-08-16 22:43:44 +00:00
|
|
|
|
2006-11-20 11:18:01 +00:00
|
|
|
dep depend:
|
2002-08-16 22:43:44 +00:00
|
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
|
2005-10-09 09:53:27 +00:00
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|