Skip to content

Instantly share code, notes, and snippets.

View amgodoi's full-sized avatar

Alexandre Maia Godoi amgodoi

  • Curitiba, Brazil
View GitHub Profile
@stvhwrd
stvhwrd / advanced
Last active October 9, 2025 00:16
Sample Makefiles for C language
TARGET = solution
LIBS = -lm
CC = gcc
CFLAGS = -g -Wall
.PHONY: default all clean
default: $(TARGET)
all: default