Last active
April 27, 2022 14:08
-
-
Save fatdollar/807cc1a629f6db98920b669b058945cd to your computer and use it in GitHub Desktop.
Makefile using gcc
This file contains hidden or 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
#put desired executable name here | |
TARGET = xxxx | |
#change to g++ or desired compiler | |
CC = gcc | |
#change flags as desired | |
CFLAGS = -g -O -Wall | |
#executable goes here | |
BINDIR = ./bin | |
#location of header files | |
INCDIR = inc | |
#location of c files | |
SRCDIR = src | |
#object files go here | |
OBJDIR = ./obj | |
INCS = $(wildcard *.h $(foreach fd, $(INCDIR), $(fd)/*.h)) #get list of all .h files | |
SRCS = $(wildcard *.c $(foreach fd, $(SRCDIR), $(fd)/*.c)) #get list of all .c files | |
SRCFILES = $(notdir $(SRCS)) #remove directory from .c files for obj directory | |
OBJS = $(addprefix $(OBJDIR)/, $(SRCFILES:c=o)) #get lis of .o files - obj/xxx.o | |
INC_FLAG = $(addprefix -I./, $(INCDIR)) #include flag for gcc | |
#add these if using libraries | |
#LIBS = -llibname | |
#LIB_DIRS = -L/dir/to/lib | |
#executable | |
$(TARGET): dir $(OBJS) | |
$(CC) -o $(BINDIR)/$@ $(OBJS) | |
#object files | |
$(OBJDIR)/%.o: $(SRCDIR)/%.c $(INCS) | |
$(CC) $(CFLAGS) $(INC_FLAG) -o $@ -c $< | |
clean: #just remove .o files | |
rm -rf $(OBJDIR) | |
distclean: #remove everything | |
rm -rf $(BINDIR) $(OBJDIR) | |
dir: #create build directories | |
mkdir -p $(BINDIR) $(OBJDIR) | |
echoes: #run "make echoes" to check that all diretories are discovered/referenced correctly | |
@echo "INC files: $(INCS)" | |
@echo "SRC files: $(SRCS)" | |
@echo "OBJ files: $(OBJS)" | |
@echo "INC flag: $(INC_FLAG)" | |
@echo "SRCFILES: $(SRCFILES)" | |
@echo "CLEAN: $(BINDIR) $(OBJDIR)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment