view dvdread/Makefile @ 21214:e7cd7283f57e

more consistency with the other Makefiles.
author diego
date Sat, 25 Nov 2006 17:09:25 +0000
parents 68df3b19a160
children ff1ac890c40a
line wrap: on
line source


ifneq ($(wildcard ../config.mak),)
include ../config.mak
endif

SRCS = dvd_input.c \
       dvd_reader.c \
       dvd_udf.c \
       ifo_print.c \
       ifo_read.c \
       nav_print.c \
       nav_read.c \
       md5.c \

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

LIBNAME = libdvdread.a

.SUFFIXES: .c .o

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 $(CFLAGS)
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