diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:48 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:48 +0000 |
commit | 62daa15f89601fb0471268a45692a327b1696743 (patch) | |
tree | 67d06805c02fc743315a870e7762195598804d8d /buildlib | |
parent | a72ace2091afd833e9359514644676c6bca55d96 (diff) |
Glitch in the program rule
Author: jgg
Date: 1998-11-29 01:36:57 GMT
Glitch in the program rule
Diffstat (limited to 'buildlib')
-rw-r--r-- | buildlib/program.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildlib/program.mak b/buildlib/program.mak index 41454ad72..792c7d522 100644 --- a/buildlib/program.mak +++ b/buildlib/program.mak @@ -12,7 +12,7 @@ # Some local definitions LOCAL := $(PROGRAM) $(LOCAL)-OBJS := $(addprefix $(OBJ)/,$(addsuffix .o,$(notdir $(basename $(SOURCE))))) -$(LOCAL)-DEP := $(addprefix $(DEP)/,$(addsuffix .d,$(notdir $(basename $(SOURCE))))) +$(LOCAL)-DEP := $(addprefix $(DEP)/,$(addsuffix .o.d,$(notdir $(basename $(SOURCE))))) $(LOCAL)-BIN := $(BIN)/$(PROGRAM) $(LOCAL)-SLIBS := $(SLIBS) |