This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function dependantProperty(func, deps) { | |
func.dependencies = deps; | |
return func; | |
} | |
function build(factory, overrides = {}) { | |
let keys = Object.keys(factory); | |
let result = {}; | |
do { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
set -e | |
if [[ ! -z $(which rr) ]]; then | |
echo rr is already installed, bailing now. | |
exit 1 | |
fi | |
if [[ -z $(which java) ]]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APPNAME = test | |
SRCDIR = src | |
OBJDIR = obj | |
BINDIR = bin | |
SRC = $(shell find $(SRCDIR) | grep .cc) | |
OBJ = $(patsubst $(SRCDIR)/%.cc, $(OBJDIR)/%.o, $(SRC)) | |
.PHONEY: all clean init |