replace MALLOC w/ CALLOC to silence valgrind warnings
[mesa.git] / src / glu / mesa / Makefile.BeOS
1 # Makefile for GLU for BeOS contributed by
2 # Tinic Uro <5uro@informatik.uni-hamburg.de>
3
4 # Mesa 3-D graphics library
5 # Version: 3.3
6 # Copyright (C) 1995-2000 Brian Paul
7 #
8 # This library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Library General Public
10 # License as published by the Free Software Foundation; either
11 # version 2 of the License, or (at your option) any later version.
12 #
13 # This library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # Library General Public License for more details.
17 #
18 # You should have received a copy of the GNU Library General Public
19 # License along with this library; if not, write to the Free
20 # Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22
23
24 ##### MACROS #####
25
26 VPATH = RCS
27
28 INCDIR = ../include
29 LIBDIR = ../lib
30
31 SOURCES = glu.c mipmap.c nurbs.c nurbscrv.c nurbssrf.c nurbsutl.c \
32 polytest.c project.c quadric.c tess.c tesselat.c
33
34 OBJECTS = $(SOURCES:.c=.o)
35
36
37
38 ##### RULES #####
39
40 .c.o:
41 $(CC) -c -i . -i- -i $(INCDIR) $(CFLAGS) $<
42
43
44
45 ##### TARGETS #####
46
47 default:
48 @echo "Specify a target configuration"
49
50 clean:
51 -rm *.o *~
52
53 targets: $(LIBDIR)/$(GLU_LIB)
54
55 # Make the library:
56 $(LIBDIR)/$(GLU_LIB): $(OBJECTS)
57 $(MAKELIB) $(GLU_LIB) $(MAJOR) $(MINOR) $(TINY) $(OBJECTS)
58 # $(RANLIB) $(GLU_LIB)
59 mv $(GLU_LIB)* $(LIBDIR)
60
61 include ../Make-config
62
63 include depend
64
65
66
67 #
68 # Run 'make depend' to update the dependencies if you change what's included
69 # by any source file.
70 #
71 depend: $(SOURCES)
72 makedepend -fdepend -Y -I../include $(SOURCES)
73