Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/course-one/make-introduction
A sample C and Go codebase to automate builds using Make (Makefile).
https://github.com/course-one/make-introduction
make makefile makefile-syntax software-development software-engineering
Last synced: 10 days ago
JSON representation
A sample C and Go codebase to automate builds using Make (Makefile).
- Host: GitHub
- URL: https://github.com/course-one/make-introduction
- Owner: course-one
- Created: 2020-02-22T17:04:20.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-23T13:54:21.000Z (almost 5 years ago)
- Last Synced: 2024-11-13T19:42:29.448Z (2 months ago)
- Topics: make, makefile, makefile-syntax, software-development, software-engineering
- Language: Makefile
- Homepage: https://medium.com/@thatisuday/distribute-your-software-with-gnu-make-tool-33934b3845dd
- Size: 2.05 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# make-introduction
A sample C and Go codebase to automate builds using Make (Makefile).> Explained on the Medium article [**here**](https://medium.com/@thatisuday/distribute-your-software-with-gnu-make-tool-33934b3845dd).
# Build C project
```
$ cd make-introduction/c
$ make clean
$ make
```# Build Go project
```
$ cd make-introduction/go
$ make clean
$ make
$ make all
$ make darwin
$ make windows
```