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