1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
AM_LFLAGS = -Cf
AM_YFLAGS = -d -v -l -p cue_scanner_
if HAVE_LOCAL_LIBODRAW
AM_CPPFLAGS = \
-I$(top_srcdir)/include \
-I$(top_srcdir)/common \
@LIBCERROR_CPPFLAGS@ \
@LIBCTHREADS_CPPFLAGS@ \
@LIBCDATA_CPPFLAGS@ \
@LIBCLOCALE_CPPFLAGS@ \
@LIBCNOTIFY_CPPFLAGS@ \
@LIBCSPLIT_CPPFLAGS@ \
@LIBUNA_CPPFLAGS@ \
@LIBCFILE_CPPFLAGS@ \
@LIBCPATH_CPPFLAGS@ \
@LIBBFIO_CPPFLAGS@ \
@PTHREAD_CPPFLAGS@
BUILT_SOURCES = libodraw_cue_parser.h
noinst_LTLIBRARIES = libodraw.la
libodraw_la_SOURCES = \
libodraw_codepage.h \
libodraw_cue_parser.y \
libodraw_cue_scanner.l \
libodraw_data_file.c libodraw_data_file.h \
libodraw_data_file_descriptor.c libodraw_data_file_descriptor.h \
libodraw_debug.c libodraw_debug.h \
libodraw_definitions.h \
libodraw_error.c libodraw_error.h \
libodraw_extern.h \
libodraw_handle.c libodraw_handle.h \
libodraw_io_handle.c libodraw_io_handle.h \
libodraw_libbfio.h \
libodraw_libcdata.h \
libodraw_libcerror.h \
libodraw_libclocale.h \
libodraw_libcnotify.h \
libodraw_libcpath.h \
libodraw_libuna.h \
libodraw_notify.c libodraw_notify.h \
libodraw_sector_range.c libodraw_sector_range.h \
libodraw_support.c libodraw_support.h \
libodraw_track_value.c libodraw_track_value.h \
libodraw_types.h \
libodraw_unused.h
endif
EXTRA_DIST = \
libodraw_cue_parser.c libodraw_cue_parser.h \
libodraw_cue_scanner.c
MAINTAINERCLEANFILES = \
Makefile.in
distclean: clean
/bin/rm -f libodraw_cue_parser.c
/bin/rm -f libodraw_cue_parser.h
/bin/rm -f libodraw_cue_parser.output
/bin/rm -f libodraw_cue_scanner.c
/bin/rm -f Makefile
splint:
@echo "Running splint on libodraw ..."
-splint -preproc -redef $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(libodraw_la_SOURCES)
|