gldemos too
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit
This commit is contained in:
parent
4fdc578448
commit
2dd2ae3f85
5 changed files with 174 additions and 16 deletions
|
|
@ -20,6 +20,9 @@ sub scan_examples {
|
|||
opendir(DIR, $_[0]);
|
||||
my @files = readdir(DIR);
|
||||
foreach my $f (@files) {
|
||||
if ($f =~ /^glutlayer\.c$/) {
|
||||
next;
|
||||
}
|
||||
if ($f =~ /\.c$/) {
|
||||
push(@examples, $_[0] . "/" . $f);
|
||||
}
|
||||
|
|
@ -130,6 +133,15 @@ sub generate {
|
|||
print(OUT " $b");
|
||||
}
|
||||
print(OUT "\n");
|
||||
print(OUT "lib: src${dir}Mw.dll\n");
|
||||
print(OUT "examples:");
|
||||
foreach my $f (@examples) {
|
||||
$b = $f;
|
||||
$b =~ s/\.c$/.exe/;
|
||||
$b =~ s/\//$dir/g;
|
||||
print(OUT " $b");
|
||||
}
|
||||
print(OUT "\n");
|
||||
print(OUT "clean: $symbolic\n");
|
||||
foreach my $f (@cfiles) {
|
||||
my $b = $f;
|
||||
|
|
@ -160,7 +172,11 @@ sub generate {
|
|||
$o =~ s/\.c$/.obj/;
|
||||
$o =~ s/\//$dir/g;
|
||||
print(OUT "$b: $o src${dir}Mw.dll\n");
|
||||
print(OUT " \$(LD) \$(EXE_LDFLAGS) $exeout\$@ $prefobj$o $needlibs ${lib}src${dir}Mw.lib\n");
|
||||
print(OUT " \$(LD) \$(EXE_LDFLAGS) $exeout\$@ $prefobj$o $needlibs ${lib}src${dir}Mw.lib");
|
||||
if($f =~ /\Q${dir}gldemos${dir}\E/){
|
||||
print(OUT " ${lib}opengl32.lib ${lib}glu32.lib");
|
||||
}
|
||||
print(OUT "\n");
|
||||
print(OUT "\n");
|
||||
print(OUT "$o: $f\n");
|
||||
print(OUT " \$(CC) \$(EXE_CFLAGS) ${out}\$@ $f\n");
|
||||
|
|
@ -206,6 +222,7 @@ push(@cfiles, "src/backend/gdi.c");
|
|||
@cfiles = sort(@cfiles);
|
||||
|
||||
scan_examples("examples/basic");
|
||||
scan_examples("examples/gldemos");
|
||||
|
||||
@examples = sort(@examples);
|
||||
|
||||
|
|
|
|||
|
|
@ -4,19 +4,10 @@ wmake -f WatMakefile
|
|||
rm -rf milsko
|
||||
mkdir -p milsko-examples
|
||||
cp src/Mw.dll milsko-examples/
|
||||
cd examples/basic
|
||||
for i in *.c; do
|
||||
owcc -bnt -I../../include ../../src/Mw.lib -o../../milsko-examples/`echo $i | cut -d. -f1`.exe $i
|
||||
cp examples/basic/*.exe milsko-examples/
|
||||
for i in examples/gldemos/*.exe; do
|
||||
cp $i milsko-examples/gl`echo $i | rev | cut -d/ -f1 | rev`
|
||||
done
|
||||
cd ../..
|
||||
cd examples/gldemos
|
||||
for i in *.c; do
|
||||
if [ "$i" = "glutlayer.c" ]; then
|
||||
continue
|
||||
fi
|
||||
owcc -bnt -I../../include ../../src/Mw.lib -o../../milsko-examples/gl`echo $i | cut -d. -f1`.exe $i opengl32.lib glu32.lib
|
||||
done
|
||||
cd ../..
|
||||
rm -f milsko-examples.zip
|
||||
cp resource/logo/logo.png examples/picture.jpg examples/picture.png milsko-examples/
|
||||
zip -rv milsko-examples.zip milsko-examples
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue