Skip to content

Instantly share code, notes, and snippets.

@lifuzu
Forked from xuhdev/Makefile
Created February 4, 2014 07:11
Show Gist options
  • Save lifuzu/8799305 to your computer and use it in GitHub Desktop.
Save lifuzu/8799305 to your computer and use it in GitHub Desktop.
Makefile template
# Makefile template for shared library
CC = gcc # C compiler
CFLAGS = -fPIC -Wall -Wextra -O2 -g # C flags
LDFLAGS = -shared # linking flags
RM = rm -f # rm command
TARGET_LIB = libtarget.so # target lib
SRCS = main.c src1.c src2.c # source files
OBJS = $(SRCS:.c=.o)
.PHONY: all
all: ${TARGET_LIB}
$(TARGET_LIB): $(OBJS)
$(CC) ${LDFLAGS} -o $@ $^
$(SRCS:.c=.d):%.d:%.c
$(CC) $(CFLAGS) -MM $< >$@
include $(SRCS:.c=.d)
.PHONY: clean
clean:
-${RM} ${TARGET_LIB} ${OBJS} $(SRCS:.c=.d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment