mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 06:40:11 +01:00
minor tweaks
This commit is contained in:
parent
ca1f44b401
commit
9dd2747e5f
1 changed files with 10 additions and 5 deletions
|
|
@ -7,12 +7,18 @@
|
|||
|
||||
##### MACROS #####
|
||||
|
||||
MAJOR = 1
|
||||
MINOR = 0
|
||||
TINY = 0
|
||||
|
||||
VPATH = RCS
|
||||
|
||||
INCDIRS = -I../include -I/usr/include/Motif1.2 -I/usr/X11R6/include
|
||||
LIBDIR = ../lib
|
||||
|
||||
SOURCES = GLwDrawA.c GLwMDrawA.c
|
||||
# Compile GLwMDrawA.c only if you have Motif headers!
|
||||
#SOURCES = GLwDrawA.c GLwMDrawA.c
|
||||
SOURCES = GLwDrawA.c
|
||||
|
||||
|
||||
OBJECTS = $(SOURCES:.c=.o)
|
||||
|
|
@ -34,16 +40,15 @@ default:
|
|||
clean:
|
||||
-rm *.o *~
|
||||
|
||||
# The name of the library file comes from Make-config
|
||||
#XXX GLW_LIB = libGLw.a
|
||||
|
||||
targets: $(LIBDIR)/$(GLW_LIB)
|
||||
|
||||
|
||||
# Make the library
|
||||
$(LIBDIR)/$(GLW_LIB): $(OBJECTS)
|
||||
$(MAKELIB) $(GLW_LIB) $(MAJOR) $(MINOR) $(OBJECTS)
|
||||
$(MAKELIB) $(GLW_LIB) $(MAJOR) $(MINOR) $(TINY) $(OBJECTS)
|
||||
mv $(GLW_LIB)* $(LIBDIR)
|
||||
-mv *.a $(LIBDIR)
|
||||
|
||||
|
||||
include ../Make-config
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue