Skip to content

Instantly share code, notes, and snippets.

@fatdollar
fatdollar / Makefile
Last active April 27, 2022 14:08
Makefile using gcc
#put desired executable name here
TARGET = xxxx
#change to g++ or desired compiler
CC = gcc
#change flags as desired
CFLAGS = -g -O -Wall
#executable goes here
BINDIR = ./bin