Permalink
Browse files

Make the _tmp directory before building.

This is more consistent and simplifies the dev build instructions.
  • Loading branch information...
Andy Chu
Andy Chu committed Jul 31, 2017
1 parent 8c1a6f1 commit 373f06b242afaf75d749b1688168a83ce7ab8c2d
Showing with 5 additions and 3 deletions.
  1. +5 −3 Makefile
View
@@ -64,9 +64,11 @@
# easier to read.
.SUFFIXES:
# Do this before every build. There should be a nicer way of handling
# directories but I don't know it.
$(shell mkdir -p _bin _release _build/hello _build/oil)
# Make all directories before every build. There might be a nicer way of
# handling directories but I don't know it.
# NOTE: _devbuild is made by build/dev.sh. That directory is NOT cleaned with
# 'make clean'.
$(shell mkdir -p _bin _release _tmp _build/hello _build/oil)
ACTIONS_SH := build/actions.sh
COMPILE_SH := build/compile.sh

0 comments on commit 373f06b

Please sign in to comment.