An open API service indexing awesome lists of open source software.

https://github.com/randymcmillan/make.swift

swift app with make configuration
https://github.com/randymcmillan/make.swift

brew cross-platform crossplatform make makefile swift

Last synced: 11 days ago
JSON representation

swift app with make configuration

Awesome Lists containing this project

README

        

## make.swift
##### cross platform configuration

$```make```

```shell
all submodules package-update build-release run-release
submodules git submodule update --init --recursive
package-update swift packge update
build-release swift build -c release
run-release swift run -c release
main swiftc Sources/my-app/main.swift
run-main ./main
clean-all clean-package-resolved##clean-package-resolved
clean-build rm -rf .build
clean-package-resolved clean-build rm -rf Package.resolved

```