-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from chaos4ever/feature/make-vfs-server-work-a…
…gain Made the VFS server work again
- Loading branch information
Showing
8 changed files
with
514 additions
and
651 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Rake.application.options.rakelib = [pwd + '/../../rakelib'] if Rake.application.options.rakelib.first == 'rakelib' | ||
|
||
subfolders = %w( | ||
virtual_file_system | ||
) | ||
|
||
task :default => subfolders do |t| | ||
t.prerequisites.each do |folder| | ||
sh "cd #{folder} && #{RAKE_COMMAND}" | ||
end | ||
end | ||
|
||
task :clean do | ||
subfolders.each do |folder| | ||
sh "cd #{folder} && #{RAKE_COMMAND} clean" | ||
end | ||
end | ||
|
||
task :install => :default do | ||
subfolders.each do |folder| | ||
sh "cd #{folder} && #{RAKE_COMMAND} install" | ||
end | ||
end |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
OBJECTS = %w( | ||
virtual_file_system.o | ||
) | ||
|
||
LIBRARIES = %w( | ||
ipc | ||
memory | ||
log | ||
string | ||
system | ||
) | ||
|
||
OUTPUT = 'virtual_file_system' | ||
|
||
load '../../servers.rake' |
Oops, something went wrong.