diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-06-18 17:17:48 +0200 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-06-18 17:17:48 +0200 |
commit | 0c2de2525e8321fe93f2b1dcca481615011c3604 (patch) | |
tree | 0faaf7c9a9c2f1d08f4b2a7af3115240e78d2ba3 | |
parent | 58ebe7acbd4e56212cee111b736ecd4f408c7b83 (diff) |
Swap arguments
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |