git-svn-id: http://svn.code.sf.net/p/netboot65/code@32 93682198-c243-4bdb-bd91-e943c89aac3b

This commit is contained in:
jonnosan 2009-01-26 04:15:40 +00:00
parent fafc7b31e5
commit 50511a6743
2 changed files with 41 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
.PHONY: client clean dist distclean
all: client dist
client:
make -C client all
clean:
make -C client clean
dist:
ruby dist\make_dist.rb
distclean:
make -C client distclean
rm -f *~

25
dist/make_dist.rb vendored Normal file
View File

@ -0,0 +1,25 @@
gem 'archive-zip'
require 'archive/zip'
require 'ftools'
WORKING_DIR=File.expand_path(File.dirname(__FILE__)+"/netboot65")
SRC_DIR=File.expand_path(File.dirname(__FILE__)+"/../")
["","client","lib","bin","boot"].each do |dir_suffix|
dir_path="#{WORKING_DIR}/#{dir_suffix}"
Dir.mkdir(dir_path) unless File.exist?(dir_path)
end
[
["client/clients/utherboot.dsk","client/"],
["server/lib/tftp_server.rb","lib"],
["server/bin/tftp_only_server.rb","bin/tftp_server.rb"],
["server/bin/import_ags_games.rb","bin"],
["server/boot/BOOTA2.PG2","boot"],
].each do |args|
src="#{SRC_DIR}/#{args[0]}"
dest="#{WORKING_DIR}/#{args[1]}"
File.copy(src,dest)
end
zipfile_name=File.dirname(__FILE__)+"/netboot65-#{Time.now.strftime("%Y-%m-%d")}.zip"
Archive::Zip.archive(zipfile_name, WORKING_DIR)