Skip to content

Commit

Permalink
Convert to using make
Browse files Browse the repository at this point in the history
  • Loading branch information
Jade Meskill and Roy van de Water authored and Integrum User committed Dec 10, 2013
1 parent 26dd3b6 commit ea76dab
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
build:
ino build

test:
mkdir -p .build
g++ -o .build/run_all spec/run_all.cpp
./.build/run_all

clean:
rm .build/run_all
ino clean

upload: build
./upload.sh

all: build test upload
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 0 additions & 5 deletions test/Makefile

This file was deleted.

3 changes: 2 additions & 1 deletion build_and_upload.sh → upload.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ino build
#!/bin/bash

if [ $? == 0 ]; then
ino upload
while [ $? != 0 ]; do
Expand Down

0 comments on commit ea76dab

Please sign in to comment.