aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-12-06 16:24:06 +0100
committerMattias Andrée <m@maandree.se>2025-12-06 16:24:06 +0100
commit5a0ff887b2bdb6d3643b85a7f7042ae20a30e8ab (patch)
tree2c4e3765c62bcd022479a62151b1f0d7278ff773 /Makefile
parentRefine implementation of Wu's Colour Quantiser (diff)
downloadlibquanta-5a0ff887b2bdb6d3643b85a7f7042ae20a30e8ab.tar.gz
libquanta-5a0ff887b2bdb6d3643b85a7f7042ae20a30e8ab.tar.bz2
libquanta-5a0ff887b2bdb6d3643b85a7f7042ae20a30e8ab.tar.xz
Use libj2 for double-max precision integersHEADmaster
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 2 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 26127d3..9bf77c2 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR)
LIB_NAME = quanta
-OBJ_PUBLIC =\
+OBJ =\
libquanta_palette_size.o\
libquanta_malloc_palette.o\
libquanta_vquantise.o\
@@ -24,13 +24,6 @@ OBJ_PUBLIC =\
libquanta_vquantise_wu.o\
libquanta_quantise_wu.o
-OBJ_PRIVATE =\
- libquanta_bigint_divmod_small__.o
-
-OBJ =\
- $(OBJ_PUBLIC)\
- $(OBJ_PRIVATE)
-
HDR =\
libquanta.h\
common.h
@@ -38,7 +31,7 @@ HDR =\
LOBJ = $(OBJ:.o=.lo)
MAN3 =\
- $(OBJ_PUBLIC:.o=.3)\
+ $(OBJ:.o=.3)\
struct_libquanta_image.3 libquanta_image.3\
struct_libquanta_channel.3 libquanta_channel.3\
struct_libquanta_palette.3 libquanta_palette.3\