mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-29 07:02:27 +00:00
build script: remove explicit makefile specification
This commit is contained in:
parent
7d70cef14c
commit
e63f5ada80
1 changed files with 0 additions and 2 deletions
2
build.py
2
build.py
|
@ -237,7 +237,6 @@ Cflags: -I${{includedir}} {cflags}
|
||||||
class MakeTarget(Target):
|
class MakeTarget(Target):
|
||||||
def __init__(self, name=None):
|
def __init__(self, name=None):
|
||||||
super().__init__(name)
|
super().__init__(name)
|
||||||
self.makefile = 'Makefile'
|
|
||||||
|
|
||||||
def configure(self, builder: 'Builder'):
|
def configure(self, builder: 'Builder'):
|
||||||
super().configure(builder)
|
super().configure(builder)
|
||||||
|
@ -249,7 +248,6 @@ class MakeTarget(Target):
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
'make',
|
'make',
|
||||||
'-f', self.makefile,
|
|
||||||
'-j', builder.jobs,
|
'-j', builder.jobs,
|
||||||
]
|
]
|
||||||
args += self.options.to_list()
|
args += self.options.to_list()
|
||||||
|
|
Loading…
Reference in a new issue