diff options
author | Damien <damien.p.george@gmail.com> | 2013-12-20 14:22:59 +0000 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-12-20 14:22:59 +0000 |
commit | e2880aa2fdc75298df487df7519d483acb03959c (patch) | |
tree | dcaf98cf6c33d4ee0d42eec51964c4ab17da6f3a /unix | |
parent | ba66a8fc5715ed771410539e39a996b2a9632ba1 (diff) | |
download | micropython-e2880aa2fdc75298df487df7519d483acb03959c.tar.gz micropython-e2880aa2fdc75298df487df7519d483acb03959c.zip |
Fix a few compiler warnings.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile b/unix/Makefile index 8c59b5b3f2..76cc0a3855 100644 --- a/unix/Makefile +++ b/unix/Makefile @@ -50,7 +50,7 @@ $(BUILD)/%.o: %.c $(CC) $(CFLAGS) -c -o $@ $< $(BUILD)/%.o: $(PYSRC)/%.s - $(AS) -c -o $@ $< + $(AS) -o $@ $< $(BUILD)/%.o: $(PYSRC)/%.c mpyconfig.h $(CC) $(CFLAGS) -c -o $@ $< |