summaryrefslogtreecommitdiff
path: root/buildlib
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:50:55 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:50:55 +0000
commitb572638d2e277c1b0040bf6ede3d344ca970f73a (patch)
tree8c708ff86d8244884ec18028713dd11d3fec3553 /buildlib
parent880e9be46811db19b9346f30ba0ea22f63db59c4 (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')
-rw-r--r--buildlib/program.mak2
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)