diff options
| author | Tomas Bzatek <tbzatek@redhat.com> | 2024-01-19 18:47:23 +0100 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@redhat.com> | 2024-01-19 18:47:23 +0100 |
| commit | 9d1ee3294040a5befb7d16cbbd6f1e8c781f6353 (patch) | |
| tree | 974ed7b72e32205684043710e2cbb56312915eae /zip/Makefile | |
| parent | 22f9564566e5a6577be9bbd3e4297fb761d2e2d1 (diff) | |
| download | tuxcmd-modules-9d1ee3294040a5befb7d16cbbd6f1e8c781f6353.tar.xz | |
zip: Use the new common logging macros
Diffstat (limited to 'zip/Makefile')
| -rw-r--r-- | zip/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/zip/Makefile b/zip/Makefile index e4a8b71..d5981ed 100644 --- a/zip/Makefile +++ b/zip/Makefile @@ -10,12 +10,12 @@ CPP = g++ CFLAGS = -I. -I$(DIR_ZIPARCHIVE) -I/usr/include \ -Wall -Wtype-limits -Wno-unknown-pragmas -fPIC -O2 -g -ggdb \ -DG_DISABLE_DEPRECATED -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE \ - -D__VERBOSE_DEBUGx + -D__DEBUG_INTERNALx -D_LOG_DOMAIN="zip" LIB_SUFFIX = `if test \`uname -m\` = x86_64 -o \`uname -m\` = ppc64; then echo 64; fi` -VFS_COMMON_OBJECTS = filelist.o filelist-vfs-intf.o strutils.o vfsutils.o +VFS_COMMON_OBJECTS = filelist.o filelist-vfs-intf.o strutils.o vfsutils.o logutils.o VFS_C_OBJECTS = VFS_CPP_OBJECTS = zip.o @@ -40,6 +40,7 @@ filelist.o: filelist.h filelist.c filelist-vfs-intf.o: filelist-vfs-intf.h filelist-vfs-intf.c strutils.o: strutils.h strutils.c vfsutils.o: vfsutils.h vfsutils.c +logutils.o: logutils.h logutils.c install:: |
