/C-boilerplate

Primary LanguageMakefileMIT LicenseMIT

C-boilerplate

Starter template for C projects w/ Makefile

Project Structure

.
├── bin
│   └── main
├── obj
│   └── main.o
└── src
    └── main.c

Usage

To create the executable file ./bin/main :

make

To delete all object files and the executable :

make clean