Last active
August 22, 2019 00:02
-
-
Save informationsea/2343121 to your computer and use it in GitHub Desktop.
Makefile template
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
# Hey Emacs, this is a -*- makefile -*- | |
# Copyright (C) 2013 Y.Okamura | |
# https://gist.github.com/2343121 | |
# MIT License | |
# Target Executable file | |
TARGET = exefile | |
# C source code | |
SRC = | |
# CPP source code | |
CXXSRC = | |
# Common Flags | |
CPPFLAGS += -Wall -Wextra -pipe | |
COMMON_FLAGS += | |
# C compiler | |
CC = gcc | |
CFLAGS += | |
# C++ compiler | |
CXX = g++ | |
CXXFLAGS += | |
# AR | |
AR = ar | |
LIB = lib$(TARGET).a | |
ARFLAGS = urcv | |
# Linker | |
LD = gcc | |
LDFLAGS += | |
LIBS += -lstdc++ -lm | |
# Windows Resource Compiler | |
WINDRES = windres | |
# Windows Executable file's extension | |
ifdef WINDIR | |
EXE = $(TARGET).exe | |
else | |
# Unix like OS | |
UNAME = $(strip $(shell uname)) | |
CPPFLAGS += | |
LDFLAGS += | |
LIBS += | |
EXE = $(TARGET) | |
ifeq ($(UNAME), Darwin) # Mac OS X | |
LDFLAGS += | |
endif | |
ifeq ($(UNAME), Linux) # Linux | |
LDFLAGS += | |
endif | |
endif | |
# For Emacs | |
ifdef EMACS | |
ifeq ($(CC),clang) | |
CPPFLAGS += -fno-color-diagnostics | |
endif | |
endif | |
# Debug Options | |
ifdef RELEASE | |
CPPFLAGS += -Os -mtune=native | |
else | |
CPPFLAGS += -g -O0 | |
endif | |
# copy commong flags | |
CPPFLAGS += $(COMMON_FLAGS) | |
LDFLAGS += $(COMMON_FLAGS) | |
# generate dependence file | |
OBJDIR = ./objs | |
CPPFLAGS += -MMD -MP -MF [email protected] | |
OBJ += $(SRC:%.c=$(OBJDIR)/%.o) $(CXXSRC:%.cpp=$(OBJDIR)/%.o) | |
DEPENDS = $(SRC:%.c=$(OBJDIR)/%.o.d) $(CXXSRC:%.cpp=$(OBJDIR)/%.o.d) | |
# Add target to build library | |
all:exe | |
exe:$(EXE) | |
lib:$(LIB) | |
$(EXE):$(OBJ) $(DEPEND_TARGET) | |
$(LD) $(LDFLAGS) -o $@ $(OBJ) $(LIBS) | |
$(LIB):$(OBJ) | |
$(AR) $(ARFLAGS) $@ $(OBJ) | |
$(OBJDIR)/%.o : %.c | |
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ | |
$(OBJDIR)/%.o : %.cpp | |
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@ | |
$(OBJDIR)/%.res : %.rc | |
$(WINDRES) $< -O coff -o $@ $(RESFLAGS) | |
clean: | |
-rm $(OBJ) | |
-rm $(DEPENDS) | |
-rmdir $(OBJDIR) | |
-rm $(EXE) | |
-rm $(LIB) | |
# -rm -r $(OBJDIR) | |
.PHONY:clean all exe lib | |
-include $(shell mkdir $(OBJDIR) 2>/dev/null) $(wildcard $(OBJDIR)/*.d) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment