Skip to content

Instantly share code, notes, and snippets.

@markjarzynski
Created April 12, 2019 15:57
Show Gist options
  • Save markjarzynski/c3f40301e9cf4217c0a8056a44157814 to your computer and use it in GitHub Desktop.
Save markjarzynski/c3f40301e9cf4217c0a8056a44157814 to your computer and use it in GitHub Desktop.
Generic Makefile
CC := gcc
LDFLAGS :=
CFLAGS := -O2 -Wall
SRCS := $(wildcard *.c)
BINS := $(patsubst %.c,%,$(SRCS))
OBJS := $(patsubst %,%.o,$(BINS))
all: $(BINS)
.PHONY: clean
clean:
$(RM) $(BINS)
rebuild: clean all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment