2002-08-16 22:43:44 +00:00
|
|
|
|
|
|
|
ifneq ($(wildcard ../config.mak),)
|
|
|
|
include ../config.mak
|
|
|
|
endif
|
|
|
|
|
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-03 13:48:52 +00:00
|
|
|
LIB=libdvdread
|
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)
|
|
|
|
CFLAGS += -I../libdvdcss -DHAVE_DVDCSS_DVDCSS_H
|
|
|
|
endif
|
2005-12-13 19:55:45 +00:00
|
|
|
|
2002-08-16 22:43:44 +00:00
|
|
|
.c.o:
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
2005-10-09 09:53:27 +00:00
|
|
|
all: $(LIB).a
|
2002-08-16 22:43:44 +00:00
|
|
|
|
|
|
|
$(LIB).a: $(OBJS)
|
|
|
|
$(AR) rc $(LIB).a $(OBJS)
|
2004-06-24 12:52:17 +00:00
|
|
|
$(RANLIB) $(LIB).a
|
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
|
|
|
|
|
|
|
dep: depend
|
|
|
|
|
2006-05-13 18:01:04 +00:00
|
|
|
depend:
|
2002-08-16 22:43:44 +00:00
|
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
|
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
2005-10-09 09:53:27 +00:00
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|