summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2023-09-08 15:30:06 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2023-09-08 15:30:06 +0200
commite44a988c4a0770b7a12193cc023d1a55b5ff89e7 (patch)
treec50622c16f864d17edf8a513387aa15976cfb516
parentf5afea3421ea68899d3064b09184c29f30ce0588 (diff)
Fix unittest object file list in test/Makefile (#683)
-rw-r--r--test/Makefile19
1 files changed, 3 insertions, 16 deletions
diff --git a/test/Makefile b/test/Makefile
index f1187caf5..b79a9f766 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,7 +1,7 @@
#
# Test/example program Makefile for the Fast Light Tool Kit (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
@@ -34,20 +34,7 @@ CPPUNITTEST = \
unittest_core.cxx
OBJUNITTEST = \
- unittests.o \
- unittest_about.o \
- unittest_points.o \
- unittest_complex_shapes.o \
- unittest_fast_shapes.o \
- unittest_circles.o \
- unittest_text.o \
- unittest_unicode.o \
- unittest_symbol.o \
- unittest_images.o \
- unittest_viewport.o \
- unittest_scrollbarsize.o \
- unittest_schemes.o \
- unittest_simple_terminal.o
+ $(CPPUNITTEST:.cxx=.o)
CPPFILES =\
adjuster.cxx \
@@ -218,7 +205,7 @@ ALL = \
twowin$(EXEEXT) \
utf8$(EXEEXT) \
windowfocus$(EXEEXT)
-
+
ALLFLUID = \
checkers$(EXEEXT) \
fast_slow$(EXEEXT) \