summaryrefslogtreecommitdiff
path: root/jpeg
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2023-12-04 17:31:18 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2023-12-04 17:31:18 +0100
commitcf07fa09dc752d1283c22a2df402e7356b770871 (patch)
tree511e5f7dd9de295b23a35172afc0cddc9ce1d13e /jpeg
parenta73a14347db54693fa486e2ebf400d7ce26231e6 (diff)
Minor updates of bundled libraries and README.CMake.txt
Update Makefiles, CMakeLists.txt, improve formatting.
Diffstat (limited to 'jpeg')
-rw-r--r--jpeg/CMakeLists.txt2
-rw-r--r--jpeg/Makefile9
2 files changed, 2 insertions, 9 deletions
diff --git a/jpeg/CMakeLists.txt b/jpeg/CMakeLists.txt
index 4b820a02f..f65f71636 100644
--- a/jpeg/CMakeLists.txt
+++ b/jpeg/CMakeLists.txt
@@ -1,7 +1,7 @@
#
# JPEG library CMake configuration for the Fast Light Toolkit (FLTK).
#
-# Copyright 1998-2021 by Bill Spitzak and others.
+# Copyright 1998-2023 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
diff --git a/jpeg/Makefile b/jpeg/Makefile
index 6dd48e361..c83b4bb7a 100644
--- a/jpeg/Makefile
+++ b/jpeg/Makefile
@@ -4,7 +4,7 @@
#
# JPEG library makefile for the Fast Light Toolkit (FLTK).
#
-# Copyright 1997-2011 by Bill Spitzak and others.
+# Copyright 1997-2023 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
@@ -19,7 +19,6 @@
include ../makeinclude
-
#
# Object files...
#
@@ -74,14 +73,12 @@ OBJS = \
LIBJPEG = ../lib/libfltk_jpeg$(LIBEXT)
-
#
# Make all targets...
#
all: $(LIBJPEG)
-
#
# Clean all targets and object files...
#
@@ -90,7 +87,6 @@ clean:
$(RM) $(OBJS)
$(RM) $(LIBJPEG)
-
#
# Install everything...
#
@@ -108,7 +104,6 @@ install: $(LIBJPEG)
$(INSTALL_DATA) jpeglib.h $(DESTDIR)$(includedir)/FL/images
$(INSTALL_DATA) fltk_jpeg_prefix.h $(DESTDIR)$(includedir)/FL/images
-
#
# Uninstall everything...
#
@@ -123,7 +118,6 @@ uninstall:
$(RM) $(includedir)/FL/images/jpeglib.h
$(RM) $(includedir)/FL/images/fltk_jpeg_prefix.h
-
#
# libfltk_jpeg.a
#
@@ -134,7 +128,6 @@ $(LIBJPEG): $(OBJS)
$(LIBCOMMAND) $@ $(OBJS)
$(RANLIB) $@
-
#
# Make dependencies...
#