Compare commits

...

2 commits

Author SHA1 Message Date
Gered a129ef7bac add pull/push ftp and batch scripts
for transferring files to/from a file server for the purposes of
managing git vcs on the project

these are extensions of previous versions of these scripts that were
used previously but never committed here
2024-07-19 18:22:29 -04:00
Gered 82f2185752 re-organize project files 2024-07-19 18:20:50 -04:00
39 changed files with 100 additions and 0 deletions

7
EXAMPLES/MAKEFILE Executable file
View file

@ -0,0 +1,7 @@
clean : .SYMBOLIC
del *.obj
del *.err
del $(target_name).exe
del $(target_name).lnk

12
PULL.BAT Executable file
View file

@ -0,0 +1,12 @@
deltree /y test
deltree /y examples
deltree /y src
del *.md
mkdir test
mkdir examples
mkdir src
ftp 10.0.0.20 < pull.ftp

28
PULL.FTP Executable file
View file

@ -0,0 +1,28 @@
ftp
ftp
binary
prompt
cd Projects/libdgl
mget *.*
cd SRC
lcd SRC
mget *.*
cd ..
lcd ..
cd TEST
lcd TEST
mget *.*
cd ..
lcd ..
cd EXAMPLES
lcd EXAMPLES
mget *.*
cd ..
lcd ..

14
PUSH.BAT Executable file
View file

@ -0,0 +1,14 @@
cd test
wmake clean
cd ..
cd examples
wmake clean
cd ..
cd src
wmake clean
cd ..
ftp 10.0.0.20 < push.ftp

39
PUSH.FTP Executable file
View file

@ -0,0 +1,39 @@
ftp
ftp
binary
prompt
cd Projects/libdgl
mdelete *
mput *
mput *.*
mkdir SRC
cd SRC
lcd SRC
mdelete *
mput *
mput *.*
cd ..
lcd ..
mkdir TEST
cd TEST
lcd TEST
mdelete *
mput *
mput *.*
cd ..
lcd ..
mkdir EXAMPLES
cd EXAMPLES
lcd EXAMPLES
mdelete *
mput *
mput *.*
cd ..
lcd ..

View file

View file