mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-19 08:22:45 +08:00
Update BSDMakefile to force build of targets
.DEFAULT or .DONE cannot be set as .PHONY so this hack was required.
This commit is contained in:
parent
649e244092
commit
40a90f1b2f
|
@ -7,6 +7,10 @@ JARG = -j$(.MAKE.JOBS)
|
|||
#by default bmake will cd into ./obj first
|
||||
.OBJDIR: ./
|
||||
|
||||
.PHONY: FRC
|
||||
$(.TARGETS): FRC
|
||||
$(GMAKE) $(.TARGETS:S,.DONE,,) $(JARG)
|
||||
|
||||
.DONE .DEFAULT: .SILENT
|
||||
$(GMAKE) $(.TARGETS:S,.DONE,,) $(JARG)
|
||||
|
||||
|
@ -14,4 +18,3 @@ JARG = -j$(.MAKE.JOBS)
|
|||
if ! which $(GMAKE) > /dev/null; then \
|
||||
echo "GNU Make is required!"; \
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user