Skip to content

Instantly share code, notes, and snippets.

@Akagi201
Forked from reecer/General Makefile
Last active August 29, 2015 14:11
Show Gist options
  • Select an option

  • Save Akagi201/f44f86af5a0a7df527a1 to your computer and use it in GitHub Desktop.

Select an option

Save Akagi201/f44f86af5a0a7df527a1 to your computer and use it in GitHub Desktop.
CC=gcc
CCFLAGS=-Wall
LDFLAGS=
SOURCES=$(wildcard *.c)
OBJECTS=$(SOURCES:.c=.o)
TARGET=des
all: $(TARGET)
$(TARGET): $(OBJECTS)
$(CC) $(LDFLAGS) -o $@ $^
%.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