- Makefiles can now be called from sub directories - Makefiles know includes and recompile if they are changed (linux, macosx) - Build all tests except SingletonDll with the static library (linux, macosx) git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@695 7ec92016-0320-0410-acc4-a06ded1c099a
26 lines
485 B
Makefile
Executable file
26 lines
485 B
Makefile
Executable file
include ../Makefile.common
|
|
|
|
BIN1 := main$(BIN_SUFFIX)
|
|
SRC1 := main.cpp
|
|
OBJ1 := $(SRC1:.cpp=.o)
|
|
LIB1 := libfoo.a
|
|
SRC2 := foo.cpp
|
|
OBJ2 := $(SRC2:.cpp=.o)
|
|
CPPFLAGS += -DLOKI_FUNCTOR_IS_NOT_A_SMALLOBJECT
|
|
|
|
.PHONY: all clean
|
|
all: $(BIN1)
|
|
|
|
$(BIN1): $(OBJ1) $(LIB1)
|
|
$(CXX) $(CXXFLAGS) -L. $(LDFLAGS) $(CPPFLAGS) -o $@ $(OBJ1) $(LDLIBS) -lfoo
|
|
|
|
$(LIB1): $(OBJ2)
|
|
$(AR) $(ARFLAGS) $@ $^
|
|
|
|
clean: cleandeps
|
|
$(RM) $(BIN1)
|
|
$(RM) $(OBJ1)
|
|
$(RM) $(LIB1)
|
|
$(RM) $(OBJ2)
|
|
|
|
include ../../Makefile.deps
|