]> git.ipfire.org Git - thirdparty/git.git/commit - Makefile
Makefile: clean *.o files we create
authorJunio C Hamano <gitster@pobox.com>
Fri, 15 Apr 2016 17:06:52 +0000 (10:06 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 15 Apr 2016 17:07:35 +0000 (10:07 -0700)
commit7897d84b8240720352e23030c35db461581b68e3
tree0f2763c17d631f7793ddd476d5a48e8d6398f8c0
parentb8b4d93100651876299eabaf76248510e616fab3
Makefile: clean *.o files we create

The part that removes object files in the 'clean' target predates
various Makefile macros that list object files we create, and
instead removes the objects with shell glob, perpetually requiring
updates whenever a new location that builds object files is added.

Simplify the target by removing $(OBJECTS), which is supposed to
have all the objects we create during the build.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile