summaryrefslogtreecommitdiff
path: root/graphics/osg-devel/files/patch-ai
blob: de1b91fbdbbc230735b75fc67bcfd53839e78f00 (plain) (blame)
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
--- work/OpenSceneGraph-0.8/src/osgPlugins/Makefile	Fri Feb 16 15:47:05 2001
+++ src/osgPlugins/Makefile	Mon Apr 23 19:17:42 2001
@@ -1,29 +1,30 @@
 #!smake
 SHELL=/bin/sh
 
-DIRS = lib3ds flt pfb osgtgz tgz zip pic png jpeg tga tiff png gif
+#DIRS = lib3ds flt pfb osgtgz tgz zip pic png jpeg tga tiff png gif
+DIRS = lib3ds flt osgtgz tgz zip pic png jpeg tga tiff png gif
 
 all :
-	for f in $(DIRS) ; do cd $$f; make ; cd ..; done
+	for f in $(DIRS) ; do cd $$f; $(MAKE) || exit 1; cd ..; done
 
 clean :
-	for f in $(DIRS) ; do cd $$f; make clean; cd ..;  done
+	for f in $(DIRS) ; do cd $$f; $(MAKE) clean; cd ..;  done
 
 clobber : 
-	for f in $(DIRS) ; do cd $$f; make clobber; cd ..;  done
+	for f in $(DIRS) ; do cd $$f; $(MAKE) clobber; cd ..;  done
 
 depend : 
-	for f in $(DIRS) ; do cd $$f; make depend; cd ..;  done
+	for f in $(DIRS) ; do cd $$f; $(MAKE) depend; cd ..;  done
 
 to_unix : 
 	for f in $(DIRS) ; do cd $$f; to_unix Makefile Makefile; cd ..;  done
-	for f in $(DIRS) ; do cd $$f; make to_unix; cd ..;  done
+	for f in $(DIRS) ; do cd $$f; $(MAKE) to_unix; cd ..;  done
 
 install :
-	for f in $(DIRS)  ; do cd $$f; make install; cd ..;  done
+	for f in $(DIRS)  ; do cd $$f; $(MAKE) install; cd ..;  done
 
 instlinks :
-	for f in $(DIRS)  ; do cd $$f; make instlinks; cd ..;  done
+	for f in $(DIRS)  ; do cd $$f; $(MAKE) instlinks; cd ..;  done
 
 instclean :
-	for f in $(DIRS)  ; do cd $$f; make instclean; cd ..;  done
+	for f in $(DIRS)  ; do cd $$f; $(MAKE) instclean; cd ..;  done