Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/pidgin-opensteamworks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreionrobb <eionrobb@8ca6c67d-4297-256d-f884-781da6d5760b>2013-06-24 06:31:13 +0400
committereionrobb <eionrobb@8ca6c67d-4297-256d-f884-781da6d5760b>2013-06-24 06:31:13 +0400
commitaa9acdf4b1818fde156a45acffb9c9c0521b536b (patch)
tree6a237d40859e7ebbc019c8c21b656e957890f218
parentc355677736125b01c64e3be3cac9565d3bcaf3e3 (diff)
Fix order of gcc variables to fix linking error in issue #48. Thanks to warren.p.whitman for figuring it out :)
-rw-r--r--steam-mobile/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/steam-mobile/Makefile b/steam-mobile/Makefile
index 67cc0e5..4ec8990 100644
--- a/steam-mobile/Makefile
+++ b/steam-mobile/Makefile
@@ -13,10 +13,10 @@ STEAM_SOURCES = \
.PHONY: all clean install
all: libsteam.so
clean:
- rm libsteam.so
+ rm -f libsteam.so libsteam-telepathy.so
libsteam.so: ${STEAM_SOURCES}
- ${COMPILER} ${LIBPURPLE_CFLAGS} ${LIBPURPLE_LIBS} -Wall -I. -g -O2 -fPIC -pipe ${STEAM_SOURCES} -o $@ -shared
+ ${COMPILER} -Wall -I. -g -O2 -fPIC -pipe ${STEAM_SOURCES} -o $@ ${LIBPURPLE_CFLAGS} ${LIBPURPLE_LIBS} -shared
libsteam-telepathy.so: ${STEAM_SOURCES}
- ${COMPILER} ${LIBPURPLE_CFLAGS} ${LIBPURPLE_LIBS} ${TELEPATHY_CFLAGS} ${TELEPATHY_LIBS} -DTELEPATHY -Wall -I. -g -O2 -fPIC -pipe ${STEAM_SOURCES} -o $@ -shared
+ ${COMPILER} -DTELEPATHY -Wall -I. -g -O2 -fPIC -pipe ${STEAM_SOURCES} -o $@ ${LIBPURPLE_CFLAGS} ${LIBPURPLE_LIBS} ${TELEPATHY_CFLAGS} ${TELEPATHY_LIBS} -shared