This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ElianMariano
Recipients ElianMariano
Date 2020-08-28.18:58:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1598641108.18.0.0642772004669.issue41657@roundup.psfhosted.org>
In-reply-to
Content
Refactoring in the Makefile is needed due a hard coded declaration to the 'OBJECT_OBJS' variable in the line 388.

This hard coded declaration can be replaced by a pattern substitution function which assigns the 'OBJECT_OBJS' variable in this much simpler way:

OBJECT_OBJS=$(patsubst %.c, %.o, $(wildcard Objects/*.c))

This assignment will facilitate the future builds because it is not need to add a new obj reference when created a new source code inside the 'Objects' folder.
History
Date User Action Args
2020-08-28 18:58:28ElianMarianosetrecipients: + ElianMariano
2020-08-28 18:58:28ElianMarianosetmessageid: <1598641108.18.0.0642772004669.issue41657@roundup.psfhosted.org>
2020-08-28 18:58:28ElianMarianolinkissue41657 messages
2020-08-28 18:58:28ElianMarianocreate