45 lines
934 B
Makefile
Executable File
45 lines
934 B
Makefile
Executable File
pkgconfigdir=$(libdir)/pkgconfig
|
|
libincludedir=$(includedir)/libburn/@BURN_MAJOR_VERSION@
|
|
|
|
lib_LTLIBRARIES = libisofs.la
|
|
|
|
libisofs_la_SOURCES = \
|
|
errors.h \
|
|
errors.c \
|
|
tree.h \
|
|
tree.c \
|
|
volume.h \
|
|
volume.c \
|
|
util.h \
|
|
util.c \
|
|
ecma119.c \
|
|
ecma119.h \
|
|
struct.h \
|
|
struct.c \
|
|
susp.h \
|
|
susp.c \
|
|
rockridge.h \
|
|
rockridge.c
|
|
|
|
libinclude_HEADERS = libisofs.h
|
|
|
|
noinst_PROGRAMS = test
|
|
test_SOURCES = test.c
|
|
test_LDADD = $(libisofs_la_OBJECTS)
|
|
|
|
INCLUDES = -I..
|
|
|
|
## ========================================================================= ##
|
|
indent_files = $(libisofs_la_SOURCES)
|
|
|
|
indent: $(indent_files)
|
|
indent -bad -bap -nbbb -nbbo -nbc -bli0 -br -bls \
|
|
-cdw -ce -cli0 -ncs -nbfda -i8 -l79 -lc79 \
|
|
-lp -saf -sai -nprs -npsl -saw -sob -ss -ut \
|
|
-sbi0 -nsc -ts8 -npcs -ncdb -fca \
|
|
$^
|
|
|
|
.PHONY: indent
|
|
|
|
## ========================================================================= ##
|