Skip to content

course-one/make-introduction

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

make-introduction

A sample C and Go codebase to automate builds using Make (Makefile).

Explained on the Medium article here.

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