Example Makefile for Static Library
January 11, 2005
This is just a simple template. There's always the option of looking at a more complete manual.
# source files. SRC = file1.cpp file2.cpp file3.cpp OBJ = $(SRC:.cpp=.o) OUT = ../libutils.a # include directories INCLUDES = -I. -I../include/ -I/usr/local/include # C++ compiler flags (-g -O2 -Wall) CCFLAGS = -g # compiler CCC = g++ # library paths LIBS = -L../ -L/usr/local/lib -lm # compile flags LDFLAGS = -g .SUFFIXES: .cpp default: dep $(OUT) .cpp.o: $(CCC) $(INCLUDES) $(CCFLAGS) -c $< -o $@ $(OUT): $(OBJ) ar rcs $(OUT) $(OBJ) depend: dep dep: makedepend -- $(CFLAGS) -- $(INCLUDES) $(SRC) clean: rm -f $(OBJ) $(OUT) Makefile.bak
11 Comments