Skip to content

Instantly share code, notes, and snippets.

@squirrel532
Forked from reecer/General Makefile
Created May 22, 2017 15:57
Show Gist options
  • Save squirrel532/5433ab736bb7f001df7a04113fdc0d68 to your computer and use it in GitHub Desktop.
Save squirrel532/5433ab736bb7f001df7a04113fdc0d68 to your computer and use it in GitHub Desktop.
A general makefile for general-purpose C projects.
CC=gcc
CCFLAGS=-Wall
LDFLAGS=
SOURCES=$(wildcard *.c)
OBJECTS=$(SOURCES:.c=.o)
TARGET=des
all: $(TARGET)
$(TARGET): $(OBJECTS)
$(CC) -o $@ $^ $(LDFLAGS)
%.o: %.c %.h
$(CC) $(CCFLAGS) -c $<
%.o: %.c
$(CC) $(CCFLAGS) -c $<
clean:
rm -f *.o $(TARGET)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment