diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:55 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:50:55 +0000 |
commit | b572638d2e277c1b0040bf6ede3d344ca970f73a (patch) | |
tree | 8c708ff86d8244884ec18028713dd11d3fec3553 /buildlib/program.mak | |
parent | 880e9be46811db19b9346f30ba0ea22f63db59c4 (diff) |
Move libraries to the statr of the compile line
Author: jgg
Date: 1998-07-30 05:34:20 GMT
Move libraries to the statr of the compile line
Diffstat (limited to 'buildlib/program.mak')
-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 8bca3c24e..41454ad72 100644 --- a/buildlib/program.mak +++ b/buildlib/program.mak @@ -31,7 +31,7 @@ veryclean/$(LOCAL): clean/$(LOCAL) # The binary build rule $($(LOCAL)-BIN): $($(LOCAL)-OBJS) echo Building program $@ - $(CXX) $(CXXFLAGS) $(LDFLAGS) $(LFLAGS) -o $@ $(filter %.o,$^) $($(LOCAL)-SLIBS) + $(CXX) $(CXXFLAGS) $(LDFLAGS) $(LFLAGS) $($(LOCAL)-SLIBS) -o $@ $(filter %.o,$^) # Compilation rules vpath %.cc $(SUBDIRS) |