Last active
September 22, 2019 10:12
-
-
Save superzazu/a8307095c916bdd66983a72be9a1ef65 to your computer and use it in GitHub Desktop.
Minimal Makefile for C projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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