Skip to content

Commit

Permalink
Added the console library, which has now been rake:ified. #3
Browse files Browse the repository at this point in the history
  • Loading branch information
Per Lundberg committed Jun 15, 2013
1 parent 3486ceb commit 6b4ae62
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/Rakefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
Rake.application.options.rakelib = pwd + "/../rakelib" if Rake.application.options.rakelib.first == 'rakelib'

libraries = %w(
console
ipc
string
system
ipc
)

# These haven't been upgraded to work w/ Rake yet.
Expand All @@ -13,7 +14,6 @@ libraries = %w(
# ipv4
# video
# serial
# console
# random
# log
# file
Expand Down
12 changes: 12 additions & 0 deletions libraries/console/Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
INCLUDES = %w(
-I../../storm/include
-I..
)

OBJECTS = %w(
console.o
)

OUTPUT = 'libconsole.a'

load '../libraries.rake'

0 comments on commit 6b4ae62

Please sign in to comment.