diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-03-06 17:12:52 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2025-03-06 17:12:52 +0100 |
| commit | e2ca1a39c8505d94e64aa7ef1d37610507389e4f (patch) | |
| tree | b17ab3717ae8c2390365015511550ad0e37467cb /jpeg | |
| parent | 880636eb120d18a2197b35839105a1aed5c71111 (diff) | |
Remove autotools (configure/make) support
Diffstat (limited to 'jpeg')
| -rw-r--r-- | jpeg/Makefile | 144 | ||||
| -rw-r--r-- | jpeg/makedepend | 335 |
2 files changed, 0 insertions, 479 deletions
diff --git a/jpeg/Makefile b/jpeg/Makefile deleted file mode 100644 index e90ede88f..000000000 --- a/jpeg/Makefile +++ /dev/null @@ -1,144 +0,0 @@ -# ************************************************************************* -# FLTK - DO NOT CHANGE when upgrading the JPEG library, unless required. * -# ************************************************************************* -# -# JPEG library makefile for the Fast Light Toolkit (FLTK). -# -# Copyright 1997-2024 by Bill Spitzak and others. -# -# This library is free software. Distribution and use rights are outlined in -# the file "COPYING" which should have been included with this file. If this -# file is missing or damaged, see the license at: -# -# https://www.fltk.org/COPYING.php -# -# Please see the following page on how to report bugs and issues: -# -# https://www.fltk.org/bugs.php -# - -include ../makeinclude - -# -# Object files... -# - -OBJS = \ - jaricom.o \ - jcapimin.o \ - jcapistd.o \ - jcarith.o \ - jccoefct.o \ - jccolor.o \ - jcdctmgr.o \ - jchuff.o \ - jcinit.o \ - jcmainct.o \ - jcmarker.o \ - jcmaster.o \ - jcomapi.o \ - jcparam.o \ - jcprepct.o \ - jcsample.o \ - jctrans.o \ - jdapimin.o \ - jdapistd.o \ - jdarith.o \ - jdatadst.o \ - jdatasrc.o \ - jdcoefct.o \ - jdcolor.o \ - jddctmgr.o \ - jdhuff.o \ - jdinput.o \ - jdmainct.o \ - jdmarker.o \ - jdmaster.o \ - jdmerge.o \ - jdpostct.o \ - jdsample.o \ - jdtrans.o \ - jerror.o \ - jfdctflt.o \ - jfdctfst.o \ - jfdctint.o \ - jidctflt.o \ - jidctfst.o \ - jidctint.o \ - jmemmgr.o \ - jmemnobs.o \ - jquant1.o \ - jquant2.o \ - jutils.o - -LIBJPEG = ../lib/libfltk_jpeg$(LIBEXT) - -# -# Make all targets... -# - -all: $(LIBJPEG) - -# -# Clean all targets and object files... -# - -clean: - $(RM) $(OBJS) - $(RM) $(LIBJPEG) - -# -# Install everything... -# - -install: $(LIBJPEG) - echo "Installing $(LIBJPEG) in $(libdir)..." - -$(INSTALL_DIR) "$(DESTDIR)$(libdir)" - $(INSTALL_LIB) $(LIBJPEG) "$(DESTDIR)$(libdir)" - $(RANLIB) "$(DESTDIR)$(libdir)/libfltk_jpeg$(LIBEXT)" - echo "Installing jpeg headers in $(includedir)/FL/images..." - -$(INSTALL_DIR) "$(DESTDIR)$(includedir)/FL/images" - $(INSTALL_DATA) jconfig.h "$(DESTDIR)$(includedir)/FL/images" - $(INSTALL_DATA) jerror.h "$(DESTDIR)$(includedir)/FL/images" - $(INSTALL_DATA) jmorecfg.h "$(DESTDIR)$(includedir)/FL/images" - $(INSTALL_DATA) jpeglib.h "$(DESTDIR)$(includedir)/FL/images" - $(INSTALL_DATA) fltk_jpeg_prefix.h "$(DESTDIR)$(includedir)/FL/images" - -# -# Uninstall everything... -# - -uninstall: - echo "Uninstalling libfltk_jpeg$(LIBEXT) in $(libdir)..." - $(RM) "$(libdir)/libfltk_jpeg$(LIBEXT)" - echo "Uninstalling jpeg headers in $(includedir)/FL/images..." - $(RM) "$(includedir)/FL/images/jconfig.h" - $(RM) "$(includedir)/FL/images/jerror.h" - $(RM) "$(includedir)/FL/images/jmorecfg.h" - $(RM) "$(includedir)/FL/images/jpeglib.h" - $(RM) "$(includedir)/FL/images/fltk_jpeg_prefix.h" - -# -# libfltk_jpeg.a -# - -$(LIBJPEG): $(OBJS) - echo Archiving $@... - $(RM) $@ - $(LIBCOMMAND) $@ $(OBJS) - $(RANLIB) $@ - -# -# Make dependencies... -# - -depend: $(OBJS:.o=.c) - makedepend -Y -I.. -f makedepend -w 20 $(OBJS:.o=.c) - echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp - echo "" >> makedepend.tmp - grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; ) - mv makedepend.tmp makedepend - -include makedepend - -$(OBJS): ../makeinclude diff --git a/jpeg/makedepend b/jpeg/makedepend deleted file mode 100644 index d211cb0b8..000000000 --- a/jpeg/makedepend +++ /dev/null @@ -1,335 +0,0 @@ -# DO NOT DELETE THIS LINE -- make depend depends on it. - -jaricom.o: fltk_jpeg_prefix.h -jaricom.o: jconfig.h -jaricom.o: jerror.h -jaricom.o: jinclude.h -jaricom.o: jmorecfg.h -jaricom.o: jpegint.h -jaricom.o: jpeglib.h -jcapimin.o: fltk_jpeg_prefix.h -jcapimin.o: jconfig.h -jcapimin.o: jerror.h -jcapimin.o: jinclude.h -jcapimin.o: jmorecfg.h -jcapimin.o: jpegint.h -jcapimin.o: jpeglib.h -jcapistd.o: fltk_jpeg_prefix.h -jcapistd.o: jconfig.h -jcapistd.o: jerror.h -jcapistd.o: jinclude.h -jcapistd.o: jmorecfg.h -jcapistd.o: jpegint.h -jcapistd.o: jpeglib.h -jcarith.o: fltk_jpeg_prefix.h -jcarith.o: jconfig.h -jcarith.o: jerror.h -jcarith.o: jinclude.h -jcarith.o: jmorecfg.h -jcarith.o: jpegint.h -jcarith.o: jpeglib.h -jccoefct.o: fltk_jpeg_prefix.h -jccoefct.o: jconfig.h -jccoefct.o: jerror.h -jccoefct.o: jinclude.h -jccoefct.o: jmorecfg.h -jccoefct.o: jpegint.h -jccoefct.o: jpeglib.h -jccolor.o: fltk_jpeg_prefix.h -jccolor.o: jconfig.h -jccolor.o: jerror.h -jccolor.o: jinclude.h -jccolor.o: jmorecfg.h -jccolor.o: jpegint.h -jccolor.o: jpeglib.h -jcdctmgr.o: fltk_jpeg_prefix.h -jcdctmgr.o: jconfig.h -jcdctmgr.o: jdct.h -jcdctmgr.o: jerror.h -jcdctmgr.o: jinclude.h -jcdctmgr.o: jmorecfg.h -jcdctmgr.o: jpegint.h -jcdctmgr.o: jpeglib.h -jchuff.o: fltk_jpeg_prefix.h -jchuff.o: jconfig.h -jchuff.o: jerror.h -jchuff.o: jinclude.h -jchuff.o: jmorecfg.h -jchuff.o: jpegint.h -jchuff.o: jpeglib.h -jcinit.o: fltk_jpeg_prefix.h -jcinit.o: jconfig.h -jcinit.o: jerror.h -jcinit.o: jinclude.h -jcinit.o: jmorecfg.h -jcinit.o: jpegint.h -jcinit.o: jpeglib.h -jcmainct.o: fltk_jpeg_prefix.h -jcmainct.o: jconfig.h -jcmainct.o: jerror.h -jcmainct.o: jinclude.h -jcmainct.o: jmorecfg.h -jcmainct.o: jpegint.h -jcmainct.o: jpeglib.h -jcmarker.o: fltk_jpeg_prefix.h -jcmarker.o: jconfig.h -jcmarker.o: jerror.h -jcmarker.o: jinclude.h -jcmarker.o: jmorecfg.h -jcmarker.o: jpegint.h -jcmarker.o: jpeglib.h -jcmaster.o: fltk_jpeg_prefix.h -jcmaster.o: jconfig.h -jcmaster.o: jerror.h -jcmaster.o: jinclude.h -jcmaster.o: jmorecfg.h -jcmaster.o: jpegint.h -jcmaster.o: jpeglib.h -jcomapi.o: fltk_jpeg_prefix.h -jcomapi.o: jconfig.h -jcomapi.o: jerror.h -jcomapi.o: jinclude.h -jcomapi.o: jmorecfg.h -jcomapi.o: jpegint.h -jcomapi.o: jpeglib.h -jcparam.o: fltk_jpeg_prefix.h -jcparam.o: jconfig.h -jcparam.o: jerror.h -jcparam.o: jinclude.h -jcparam.o: jmorecfg.h -jcparam.o: jpegint.h -jcparam.o: jpeglib.h -jcprepct.o: fltk_jpeg_prefix.h -jcprepct.o: jconfig.h -jcprepct.o: jerror.h -jcprepct.o: jinclude.h -jcprepct.o: jmorecfg.h -jcprepct.o: jpegint.h -jcprepct.o: jpeglib.h -jcsample.o: fltk_jpeg_prefix.h -jcsample.o: jconfig.h -jcsample.o: jerror.h -jcsample.o: jinclude.h -jcsample.o: jmorecfg.h -jcsample.o: jpegint.h -jcsample.o: jpeglib.h -jctrans.o: fltk_jpeg_prefix.h -jctrans.o: jconfig.h -jctrans.o: jerror.h -jctrans.o: jinclude.h -jctrans.o: jmorecfg.h -jctrans.o: jpegint.h -jctrans.o: jpeglib.h -jdapimin.o: fltk_jpeg_prefix.h -jdapimin.o: jconfig.h -jdapimin.o: jerror.h -jdapimin.o: jinclude.h -jdapimin.o: jmorecfg.h -jdapimin.o: jpegint.h -jdapimin.o: jpeglib.h -jdapistd.o: fltk_jpeg_prefix.h -jdapistd.o: jconfig.h -jdapistd.o: jerror.h -jdapistd.o: jinclude.h -jdapistd.o: jmorecfg.h -jdapistd.o: jpegint.h -jdapistd.o: jpeglib.h -jdarith.o: fltk_jpeg_prefix.h -jdarith.o: jconfig.h -jdarith.o: jerror.h -jdarith.o: jinclude.h -jdarith.o: jmorecfg.h -jdarith.o: jpegint.h -jdarith.o: jpeglib.h -jdatadst.o: fltk_jpeg_prefix.h -jdatadst.o: jconfig.h -jdatadst.o: jerror.h -jdatadst.o: jinclude.h -jdatadst.o: jmorecfg.h -jdatadst.o: jpegint.h -jdatadst.o: jpeglib.h -jdatasrc.o: fltk_jpeg_prefix.h -jdatasrc.o: jconfig.h -jdatasrc.o: jerror.h -jdatasrc.o: jinclude.h -jdatasrc.o: jmorecfg.h -jdatasrc.o: jpegint.h -jdatasrc.o: jpeglib.h -jdcoefct.o: fltk_jpeg_prefix.h -jdcoefct.o: jconfig.h -jdcoefct.o: jerror.h -jdcoefct.o: jinclude.h -jdcoefct.o: jmorecfg.h -jdcoefct.o: jpegint.h -jdcoefct.o: jpeglib.h -jdcolor.o: fltk_jpeg_prefix.h -jdcolor.o: jconfig.h -jdcolor.o: jerror.h -jdcolor.o: jinclude.h -jdcolor.o: jmorecfg.h -jdcolor.o: jpegint.h -jdcolor.o: jpeglib.h -jddctmgr.o: fltk_jpeg_prefix.h -jddctmgr.o: jconfig.h -jddctmgr.o: jdct.h -jddctmgr.o: jerror.h -jddctmgr.o: jinclude.h -jddctmgr.o: jmorecfg.h -jddctmgr.o: jpegint.h -jddctmgr.o: jpeglib.h -jdhuff.o: fltk_jpeg_prefix.h -jdhuff.o: jconfig.h -jdhuff.o: jerror.h -jdhuff.o: jinclude.h -jdhuff.o: jmorecfg.h -jdhuff.o: jpegint.h -jdhuff.o: jpeglib.h -jdinput.o: fltk_jpeg_prefix.h -jdinput.o: jconfig.h -jdinput.o: jerror.h -jdinput.o: jinclude.h -jdinput.o: jmorecfg.h -jdinput.o: jpegint.h -jdinput.o: jpeglib.h -jdmainct.o: fltk_jpeg_prefix.h -jdmainct.o: jconfig.h -jdmainct.o: jerror.h -jdmainct.o: jinclude.h -jdmainct.o: jmorecfg.h -jdmainct.o: jpegint.h -jdmainct.o: jpeglib.h -jdmarker.o: fltk_jpeg_prefix.h -jdmarker.o: jconfig.h -jdmarker.o: jerror.h -jdmarker.o: jinclude.h -jdmarker.o: jmorecfg.h -jdmarker.o: jpegint.h -jdmarker.o: jpeglib.h -jdmaster.o: fltk_jpeg_prefix.h -jdmaster.o: jconfig.h -jdmaster.o: jerror.h -jdmaster.o: jinclude.h -jdmaster.o: jmorecfg.h -jdmaster.o: jpegint.h -jdmaster.o: jpeglib.h -jdmerge.o: fltk_jpeg_prefix.h -jdmerge.o: jconfig.h -jdmerge.o: jerror.h -jdmerge.o: jinclude.h -jdmerge.o: jmorecfg.h -jdmerge.o: jpegint.h -jdmerge.o: jpeglib.h -jdpostct.o: fltk_jpeg_prefix.h -jdpostct.o: jconfig.h -jdpostct.o: jerror.h -jdpostct.o: jinclude.h -jdpostct.o: jmorecfg.h -jdpostct.o: jpegint.h -jdpostct.o: jpeglib.h -jdsample.o: fltk_jpeg_prefix.h -jdsample.o: jconfig.h -jdsample.o: jerror.h -jdsample.o: jinclude.h -jdsample.o: jmorecfg.h -jdsample.o: jpegint.h -jdsample.o: jpeglib.h -jdtrans.o: fltk_jpeg_prefix.h -jdtrans.o: jconfig.h -jdtrans.o: jerror.h -jdtrans.o: jinclude.h -jdtrans.o: jmorecfg.h -jdtrans.o: jpegint.h -jdtrans.o: jpeglib.h -jerror.o: fltk_jpeg_prefix.h -jerror.o: jconfig.h -jerror.o: jerror.h -jerror.o: jinclude.h -jerror.o: jmorecfg.h -jerror.o: jpegint.h -jerror.o: jpeglib.h -jerror.o: jversion.h -jfdctflt.o: fltk_jpeg_prefix.h -jfdctflt.o: jconfig.h -jfdctflt.o: jdct.h -jfdctflt.o: jerror.h -jfdctflt.o: jinclude.h -jfdctflt.o: jmorecfg.h -jfdctflt.o: jpegint.h -jfdctflt.o: jpeglib.h -jfdctfst.o: fltk_jpeg_prefix.h -jfdctfst.o: jconfig.h -jfdctfst.o: jdct.h -jfdctfst.o: jerror.h -jfdctfst.o: jinclude.h -jfdctfst.o: jmorecfg.h -jfdctfst.o: jpegint.h -jfdctfst.o: jpeglib.h -jfdctint.o: fltk_jpeg_prefix.h -jfdctint.o: jconfig.h -jfdctint.o: jdct.h -jfdctint.o: jerror.h -jfdctint.o: jinclude.h -jfdctint.o: jmorecfg.h -jfdctint.o: jpegint.h -jfdctint.o: jpeglib.h -jidctflt.o: fltk_jpeg_prefix.h -jidctflt.o: jconfig.h -jidctflt.o: jdct.h -jidctflt.o: jerror.h -jidctflt.o: jinclude.h -jidctflt.o: jmorecfg.h -jidctflt.o: jpegint.h -jidctflt.o: jpeglib.h -jidctfst.o: fltk_jpeg_prefix.h -jidctfst.o: jconfig.h -jidctfst.o: jdct.h -jidctfst.o: jerror.h -jidctfst.o: jinclude.h -jidctfst.o: jmorecfg.h -jidctfst.o: jpegint.h -jidctfst.o: jpeglib.h -jidctint.o: fltk_jpeg_prefix.h -jidctint.o: jconfig.h -jidctint.o: jdct.h -jidctint.o: jerror.h -jidctint.o: jinclude.h -jidctint.o: jmorecfg.h -jidctint.o: jpegint.h -jidctint.o: jpeglib.h -jmemmgr.o: fltk_jpeg_prefix.h -jmemmgr.o: jconfig.h -jmemmgr.o: jerror.h -jmemmgr.o: jinclude.h -jmemmgr.o: jmemsys.h -jmemmgr.o: jmorecfg.h -jmemmgr.o: jpegint.h -jmemmgr.o: jpeglib.h -jmemnobs.o: fltk_jpeg_prefix.h -jmemnobs.o: jconfig.h -jmemnobs.o: jerror.h -jmemnobs.o: jinclude.h -jmemnobs.o: jmemsys.h -jmemnobs.o: jmorecfg.h -jmemnobs.o: jpegint.h -jmemnobs.o: jpeglib.h -jquant1.o: fltk_jpeg_prefix.h -jquant1.o: jconfig.h -jquant1.o: jerror.h -jquant1.o: jinclude.h -jquant1.o: jmorecfg.h -jquant1.o: jpegint.h -jquant1.o: jpeglib.h -jquant2.o: fltk_jpeg_prefix.h -jquant2.o: jconfig.h -jquant2.o: jerror.h -jquant2.o: jinclude.h -jquant2.o: jmorecfg.h -jquant2.o: jpegint.h -jquant2.o: jpeglib.h -jutils.o: fltk_jpeg_prefix.h -jutils.o: jconfig.h -jutils.o: jerror.h -jutils.o: jinclude.h -jutils.o: jmorecfg.h -jutils.o: jpegint.h -jutils.o: jpeglib.h |
