-# These are listed one per line to make merges easier.
-# `CGIRLSBUILDDIR´ is added as a prefix at the end.
-CGIRLS_OBJS :=
-CGIRLS_OBJS += cgirls.o
-CGIRLS_OBJS := $(addprefix $(CGIRLSDIR)/,$(CGIRLS_OBJS))
+# `CGIRLS_TESTOBJS´ lists the additional object files used for the testing programs.
+CGIRLS_OBJS := $(patsubst %.c,%.o,$(shell find '$(CGIRLSDIR)' '(' -path '$(CGIRLSDIR)' -o -prune ')' -a -type f -a -name '*.c' -a '!' -name 'cgirls-test-*.c'))
+CGIRLS_TESTOBJS := $(patsubst %.c,%.o,$(shell find '$(CGIRLSDIR)' '(' -path '$(CGIRLSDIR)' -o -prune ')' -a -type f -a -name 'cgirls-test-*.c'))
+CGIRLS_TESTS := $(patsubst %.o,%,$(CGIRLS_TESTOBJS))
+
+# `CGIRLS_ALLOBJS´ contains both `CGIRLS_OBJS´ and `CGIRLS_TESTOBJS´.
+CGIRLS_ALLOBJS = $(CGIRLS_OBJS) $(CGIRLS_TESTOBJS)