linuxdcpp-team team mailing list archive
-
linuxdcpp-team team
-
Mailing list archive
-
Message #06378
[Branch ~dcplusplus-team/dcpp-plugin-sdk-cpp/trunk] Rev 6: fix link order in the makefile
------------------------------------------------------------
revno: 6
committer: poy <poy@xxxxxxxxxx>
branch nick: dcpp-plugin-sdk-cpp
timestamp: Thu 2012-12-27 15:00:26 +0100
message:
fix link order in the makefile
modified:
projects/make/Makefile
--
lp:dcpp-plugin-sdk-cpp
https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-cpp/trunk
Your team Dcplusplus-team is subscribed to branch lp:dcpp-plugin-sdk-cpp.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-cpp/trunk/+edit-subscription
=== modified file 'projects/make/Makefile'
--- projects/make/Makefile 2012-11-16 17:23:24 +0000
+++ projects/make/Makefile 2012-12-27 14:00:26 +0000
@@ -44,7 +44,7 @@
$(TARGET)
$(TARGET): $(OBJS)
- cd $(OUTPUT_DIR); $(CXX) $(LINKFLAGS) -o $@$(LIBEXT) $^
+ cd $(OUTPUT_DIR); $(CXX) $^ $(LINKFLAGS) -o $@$(LIBEXT)
ensure-dirs:
mkdir -p $(OUTPUT_DIR)/pluginsdk $(OUTPUT_DIR)/src