diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:31 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:53:31 +0000 |
commit | f760b7d2124f9b4498b62c481f08e56cc617e675 (patch) | |
tree | 287632c077177adb69b319c1fa44204f784a7d9b /buildlib/program.mak | |
parent | 1fcbfcb8ba78224fd0e4d532d4fa976f0ea00fef (diff) |
Fixed make system to rebuild binaries when shlib versio...
Author: jgg
Date: 1999-04-12 04:28:46 GMT
Fixed make system to rebuild binaries when shlib version changes
Diffstat (limited to 'buildlib/program.mak')
-rw-r--r-- | buildlib/program.mak | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/buildlib/program.mak b/buildlib/program.mak index 9a19a261f..fe0d30de3 100644 --- a/buildlib/program.mak +++ b/buildlib/program.mak @@ -6,6 +6,8 @@ # $(SOURCE) - The source code to use # $(PROGRAM) - The name of the program # $(SLIBS) - Shared libs to link against +# $(LIB_MAKES) - Shared libary make files to depend on - to ensure we get +# remade when the shared library version increases. # See defaults.mak for information about LOCAL @@ -15,6 +17,7 @@ $(LOCAL)-OBJS := $(addprefix $(OBJ)/,$(addsuffix .o,$(notdir $(basename $(SOURCE $(LOCAL)-DEP := $(addprefix $(DEP)/,$(addsuffix .o.d,$(notdir $(basename $(SOURCE))))) $(LOCAL)-BIN := $(BIN)/$(PROGRAM) $(LOCAL)-SLIBS := $(SLIBS) +$(LOCAL)-MKS := $(addprefix $(BASE)/,$(LIB_MAKES)) # Install the command hooks program: $(BIN)/$(PROGRAM) @@ -29,7 +32,7 @@ veryclean/$(LOCAL): clean/$(LOCAL) -rm -f $($(@F)-BIN) # The binary build rule -$($(LOCAL)-BIN): $($(LOCAL)-OBJS) +$($(LOCAL)-BIN): $($(LOCAL)-OBJS) $($(LOCAL)-MKS) echo Building program $@ $(CXX) $(CXXFLAGS) $(LDFLAGS) $(LFLAGS) -o $@ $(filter %.o,$^) $($(@F)-SLIBS) $(LEFLAGS) |