Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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).

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
```