8000 Trivial fixes for building unix version by pfalcon · Pull Request #3 · micropython/micropython · GitHub
[go: up one dir, main page]

Skip to content

Trivial fixes for building unix version #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 29, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Don't error out if build/ directory already exists.
  • Loading branch information
Paul Sokolovsky committed Dec 29, 2013
commit 729fd12fbf003d4eb61a8429e06889ea66688939
2 changes: 1 addition & 1 deletion unix/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ $(PROG): $(BUILD) $(OBJ)
size $(PROG)

$(BUILD):
mkdir $@
mkdir -p $@

$(BUILD)/%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
Expand Down
0