Skip to content

Commit

Permalink
copying all tools
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonMFong committed Nov 2, 2024
1 parent b431abd commit 185668f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,19 +83,19 @@ test:

### Packaging

package: $(PACKAGE_MODE)
package: $(PACKAGE_COMPONENTS) $(PACKAGE_MODE)

package-linux: $(PACKAGE_NAME) $(PACKAGE_NAME)/$(BIN_NAME)
package-linux: $(PACKAGE_NAME)
zip -r $(BIN_DIR)/$(PACKAGE_NAME)-$(PLATFORM).zip $(PACKAGE_NAME)
tar vczf $(BIN_DIR)/$(PACKAGE_NAME)-$(PLATFORM).tar.gz $(PACKAGE_NAME)

package-macos: $(PACKAGE_NAME) $(PACKAGE_NAME)/$(BIN_NAME)
package-macos: $(PACKAGE_NAME)
hdiutil create -fs HFS+ -volname Goto -srcfolder $(PACKAGE_NAME) $(BIN_DIR)/$(PACKAGE_NAME)-$(PLATFORM).dmg

$(PACKAGE_NAME):
mkdir -p $@

$(PACKAGE_NAME)/$(BIN_NAME): $(BIN_DIR)/$(BIN_NAME)
$(PACKAGE_NAME)/%: $(BIN_DIR)/%
@cp -afv $< $(PACKAGE_NAME)

codesign:
Expand Down

0 comments on commit 185668f

Please sign in to comment.