Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 520 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 520 Bytes

Simple GCC Makefile

Simple Makefile for C programs using the GCC compiler (inspired by EPITECH Makefiles). By default the source folder is ./src and the header folder is ./hds.

Rules

  • make : Compile your sources
  • make clean : Remove all the object files (".o")
  • make fclean : Remove all the object files + the executable file
  • make re : Recompile everything (even the unmodified files)

NOTE: Emacs indentation is used so it might not look "clean" if you use a different text editor.