Skip to content

Commit

Permalink
Merge pull request #3 from MZC-CSC/ft/makefile
Browse files Browse the repository at this point in the history
add makefile in project root directory
  • Loading branch information
MZC-CSC authored Jul 1, 2024
2 parents 56c8de5 + 57debce commit 58dd059
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
.PHONY: default
default:
@cd src && $(MAKE) default

.PHONY: linux-arm
linux-arm:
@cd src && $(MAKE) linux-arm

#windows 64bint
.PHONY: win
win:
@cd src && $(MAKE) win

#windows 32bit
.PHONY: win86
win86:
@cd src && $(MAKE) win86

.PHONY: mac
mac:
@cd src && $(MAKE) mac

.PHONY: mac-arm
mac-arm:
@cd src && $(MAKE) mac-arm

.PHONY: clean
clean:
@cd src && $(MAKE) clean

0 comments on commit 58dd059

Please sign in to comment.