-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* #111 Refactor Makefiles to directory * #111 Refactor Makefiles to directory * #111 Refactor Makefiles to directory * #111 Refactor Makefiles to directory * #111 Refactor Makefiles to directory
- Loading branch information
Showing
13 changed files
with
109 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Makefile extensions for darwin-arm64. | ||
|
||
# ----------------------------------------------------------------------------- | ||
# OS-ARCH specific targets | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: build-osarch-specific | ||
build-osarch-specific: darwin/arm64 | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Makefile targets supported only by this platform. | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: only-darwin-arm64 | ||
only-darwin-arm64: | ||
@echo "Only darwin-arm64 has this Makefile target." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Makefile extensions for darwin-x86_64. | ||
|
||
# ----------------------------------------------------------------------------- | ||
# OS-ARCH specific targets | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: build-osarch-specific | ||
build-osarch-specific: darwin/amd64 | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Makefile targets supported only by this platform. | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: only-darwin-x86_64 | ||
only-darwin-x86_64: | ||
@echo "Only darwin-x86_64 has this Makefile target." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Makefile extensions for linux-arm64. | ||
|
||
# ----------------------------------------------------------------------------- | ||
# OS-ARCH specific targets | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: build-osarch-specific | ||
build-osarch-specific: linux/arm64 | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Makefile targets supported only by this platform. | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: only-linux-arm64 | ||
only-linux-arm64: | ||
@echo "Only linux-arm64 has this Makefile target." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Makefile extensions for linux-x86_64. | ||
|
||
# ----------------------------------------------------------------------------- | ||
# OS-ARCH specific targets | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: build-osarch-specific | ||
build-osarch-specific: linux/amd64 | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Makefile targets supported only by this platform. | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: only-linux-x86_64 | ||
only-linux-x86_64: | ||
@echo "Only linux-x86_64 has this Makefile target." |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Makefile extensions for windows-arm64. | ||
|
||
# ----------------------------------------------------------------------------- | ||
# OS-ARCH specific targets | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: build-osarch-specific | ||
build-osarch-specific: windows/arm64 | ||
@mv $(TARGET_DIRECTORY)/windows-arm64/$(PROGRAM_NAME) $(TARGET_DIRECTORY)/windows-arm64/$(PROGRAM_NAME).exe | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Makefile targets supported only by this platform. | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: only-windows-arm64 | ||
only-windows-arm64: | ||
@echo "Only windows-arm64 has this Makefile target." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Makefile extensions for windows. | ||
|
||
# ----------------------------------------------------------------------------- | ||
# OS-ARCH specific targets | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: build-osarch-specific | ||
build-osarch-specific: windows/amd64 | ||
@mv $(TARGET_DIRECTORY)/windows-amd64/$(PROGRAM_NAME) $(TARGET_DIRECTORY)/windows-amd64/$(PROGRAM_NAME).exe | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Makefile targets supported only by this platform. | ||
# ----------------------------------------------------------------------------- | ||
|
||
.PHONY: only-windows-x86_64 | ||
only-windows-x86_64: | ||
@echo "Only windows-x86_64 has this Makefile target." |