mirror of
https://github.com/rvtr/ctr_eFuse.git
synced 2025-11-02 00:11:04 -04:00
git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-09-30%20-%20paladin.7z/paladin/ctr_eFuse@176 ff987cc8-cf2f-4642-8568-d52cce064691
28 lines
521 B
Tcsh
28 lines
521 B
Tcsh
#!c:/tcsh/tcsh.exe
|
|
|
|
set mydir="cr_generate_id"
|
|
|
|
set myfiles="Makefile.sharp main.c cr_generate_id.h libgenid.a readme_openssl.txt LICENSE_en.txt LICENSE_jp.txt readme.txt readme_openssl.txt"
|
|
|
|
|
|
if(-e $mydir.zip) then
|
|
rm -f $mydir.zip
|
|
endif
|
|
|
|
if(-d $mydir ) then
|
|
rm -rf $mydir
|
|
endif
|
|
|
|
mkdir $mydir
|
|
|
|
foreach myfile ($myfiles)
|
|
if(-e $mydir/$myfile) then
|
|
rm -f $mydir/$myfile
|
|
endif
|
|
cp $myfile $mydir/$myfile
|
|
end
|
|
|
|
mv $mydir/Makefile.sharp $mydir/Makefile
|
|
|
|
zip $mydir.zip $mydir/*
|