File: mklib.amiwin

package info (click to toggle)
mesa 3.1-17
  • links: PTS
  • area: main
  • in suites: potato
  • size: 10,908 kB
  • ctags: 19,599
  • sloc: ansic: 132,736; asm: 10,554; sh: 9,193; cpp: 3,540; makefile: 1,377
file content (43 lines) | stat: -rwxr-xr-x 555 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
; Script for building Mesa and example programs for AmiWin
; on the Amiga. 

if not exists lib
makedir lib
endif

echo "Making MesaGL.LIB"
cd src
smake targets
cd /

echo "Making MesaGLU.LIB"
cd src-glu
smake targets
cd /

echo "Making Mesaaux.LIB"
cd src-aux
smake targets
cd /

echo "Making Mesatk.LIB"
cd src-tk
smake targets
cd /

echo "Making book examples."
cd book
smake targets
cd /

echo "Making sample code."
cd samples
smake targets
cd /

echo "Making demo code."
cd demos
smake targets
cd /

echo "Finished making all libraries and programs."