mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 13:21:05 +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):
|
||||
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()
|
||||
|
|
Loading…
Reference in a new issue