Skip to content

Instantly share code, notes, and snippets.

@superzazu
Last active September 22, 2019 10:12
Show Gist options
  • Save superzazu/a8307095c916bdd66983a72be9a1ef65 to your computer and use it in GitHub Desktop.
Save superzazu/a8307095c916bdd66983a72be9a1ef65 to your computer and use it in GitHub Desktop.
Minimal Makefile for C projects
bin = my_program_name
src = $(wildcard *.c)
obj = $(src:.c=.o)
CFLAGS = -g -Wall -Wextra -O2 -std=c99 -pedantic
LDFLAGS =
.PHONY: all clean
all: $(bin)
$(bin): $(obj)
clean:
-rm $(bin) $(obj)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment