dcc58aaf5402069d4eb0e2d06da76c2a58e103ff
[mesa.git] / src / glu / mesa / Makefile.BeOS-R4
1 # $Id: Makefile.BeOS-R4,v 1.7 2000/07/11 14:11:04 brianp Exp $
2 # Makefile for GLU for BeOS R4
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 GLU_MAJOR = 1
27 GLU_MINOR = 1
28 GLU_TINY = $(MESA_MAJOR)$(MESA_MINOR)$(MESA_TINY)
29
30 VPATH = RCS
31
32 INCDIR = ../include
33 LIBDIR = ../lib
34
35 SOURCES = glu.c mipmap.c nurbs.c nurbscrv.c nurbssrf.c nurbsutl.c \
36 polytest.c project.c quadric.c tess.c tesselat.c
37
38 OBJECTS = $(SOURCES:.c=.o)
39
40
41
42 ##### TARGETS #####
43
44 default:
45 @echo "Specify a target configuration"
46
47 clean:
48 -rm *.o *~
49
50 targets: $(LIBDIR)/$(GLU_LIB)
51
52 # Make the library:
53 $(LIBDIR)/$(GLU_LIB): $(OBJECTS)
54 $(MAKELIB) $(GLU_LIB) $(GLU_MAJOR) $(GLU_MINOR) $(GLU_TINY) -L$(LIBDIR) -lGL $(OBJECTS)
55 mv $(GLU_LIB)* $(LIBDIR)
56
57 include ../Make-config
58
59 include depend
60
61
62
63 ##### RULES #####
64
65 .c.o:
66 $(CC) -c -I. -I../ -I$(INCDIR) $(CFLAGS) $<
67
68
69
70 #
71 # Run 'make depend' to update the dependencies if you change what's included
72 # by any source file.
73 #
74 depend: $(SOURCES)
75 makedepend -fdepend -Y -I../include $(SOURCES)
76