Added point_contour_test, taken from O'Rourke 1998.
[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: 2.6
6 # Copyright (C) 1995-1997 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 project.c quadric.c tess.c tess_fist.c tess_hash.c tess_heap.c \
33 tess_winding.c
34
35 OBJECTS = $(SOURCES:.c=.o)
36
37
38
39 ##### RULES #####
40
41 .c.o:
42 $(CC) -c -i . -i- -i $(INCDIR) $(CFLAGS) $<
43
44
45
46 ##### TARGETS #####
47
48 default:
49 @echo "Specify a target configuration"
50
51 clean:
52 -rm *.o *~
53
54 targets: $(LIBDIR)/$(GLU_LIB)
55
56 # Make the library:
57 $(LIBDIR)/$(GLU_LIB): $(OBJECTS)
58 $(MAKELIB) $(GLU_LIB) $(MAJOR) $(MINOR) $(TINY) $(OBJECTS)
59 # $(RANLIB) $(GLU_LIB)
60 mv $(GLU_LIB)* $(LIBDIR)
61
62 include ../Make-config
63
64 include depend
65
66
67
68 #
69 # Run 'make depend' to update the dependencies if you change what's included
70 # by any source file.
71 #
72 depend: $(SOURCES)
73 makedepend -fdepend -Y -I../include $(SOURCES)
74