build script: remove explicit makefile specification

This commit is contained in:
alexey.lysiuk 2020-12-20 13:13:17 +02:00
parent 7d70cef14c
commit e63f5ada80

View file

@ -237,7 +237,6 @@ Cflags: -I${{includedir}} {cflags}
class MakeTarget(Target):
def __init__(self, name=None):
super().__init__(name)
self.makefile = 'Makefile'
def configure(self, builder: 'Builder'):
super().configure(builder)
@ -249,7 +248,6 @@ class MakeTarget(Target):
args = [
'make',
'-f', self.makefile,
'-j', builder.jobs,
]
args += self.options.to_list()