diff options
author | Damien George <damien.p.george@gmail.com> | 2013-12-29 10:30:14 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2013-12-29 10:30:14 -0800 |
commit | 319b28a35596ba1333610385146ec408d34e22a0 (patch) | |
tree | 6e893b235ae50fc99a0ca815435f833e281def36 /unix | |
parent | 5ebbfe7e5119147ed1f49edb9d0d0dda42f68d71 (diff) | |
parent | 729fd12fbf003d4eb61a8429e06889ea66688939 (diff) | |
download | micropython-319b28a35596ba1333610385146ec408d34e22a0.tar.gz micropython-319b28a35596ba1333610385146ec408d34e22a0.zip |
Merge pull request #3 from pfalcon/for-upstream
Trivial fixes for building unix version
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 441804e509..91e26e5247 100644 --- a/unix/Makefile +++ b/unix/Makefile @@ -65,7 +65,7 @@ $(PROG): $(BUILD) $(OBJ) size $(PROG) $(BUILD): - mkdir $@ + mkdir -p $@ $(BUILD)/%.o: %.c $(CC) $(CFLAGS) -c -o $@ $< |