summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2011-06-18 17:17:48 +0200
committerPieter Noordhuis <pcnoordhuis@gmail.com>2011-06-18 17:17:48 +0200
commit0c2de2525e8321fe93f2b1dcca481615011c3604 (patch)
tree0faaf7c9a9c2f1d08f4b2a7af3115240e78d2ba3
parent58ebe7acbd4e56212cee111b736ecd4f408c7b83 (diff)
Swap arguments
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4bbc660..ba59ffb 100644
--- a/Makefile
+++ b/Makefile
@@ -78,7 +78,7 @@ hiredis-example-ae:
@false
else
hiredis-example-ae: example-ae.c adapters/ae.h $(STLIBNAME)
- $(CC) -o $@ $(REAL_CFLAGS) -I$(AE_DIR) $(REAL_LDFLAGS) $(AE_DIR)/ae.o $(AE_DIR)/zmalloc.o example-ae.c $(STLIBNAME)
+ $(CC) -o $@ $(REAL_CFLAGS) $(REAL_LDFLAGS) -I$(AE_DIR) $(AE_DIR)/ae.o $(AE_DIR)/zmalloc.o example-ae.c $(STLIBNAME)
endif
hiredis-%: %.o $(STLIBNAME)