aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorPiotr Esden-Tempski2011-02-16 20:24:26 -0800
committerPiotr Esden-Tempski2011-02-16 20:24:26 -0800
commitc8d1b8d0cc5df6d985fe16f838fa575307ead089 (patch)
tree6d7a7cf30cf71e2fd8ee048264a994a4f4d4cd48 /src/Makefile
parent8b65e8e2593a3a0eb877038e94f4ffd4493f18d6 (diff)
Cleaned up CFLAGS and LDFLAGS as well as targets to use the correct flags. Now blackmagic will compile also on a multilib compiler.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index e8f1a40..a673939 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -32,7 +32,7 @@ include $(HOST)/Makefile.inc
OBJ = $(SRC:.c=.o)
blackmagic: $(OBJ)
- $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
+ $(CC) -o $@ $^ $(LDFLAGS)
.PHONY: clean host_clean