diff options
author | Karl Schultz <[email protected]> | 2001-09-18 20:47:23 +0000 |
---|---|---|
committer | Karl Schultz <[email protected]> | 2001-09-18 20:47:23 +0000 |
commit | 573dd2206b1f3653fd10796e1de13c058d878e32 (patch) | |
tree | d2dc4e69218e8da9fca2ae2f6fb48ea2e017dbb4 /src/mesa/drivers/osmesa/Makefile.win | |
parent | 4742735a5c22f2400a2777965e08e757ec384979 (diff) |
clean up makefiles some more for Windows
Diffstat (limited to 'src/mesa/drivers/osmesa/Makefile.win')
-rw-r--r-- | src/mesa/drivers/osmesa/Makefile.win | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/src/mesa/drivers/osmesa/Makefile.win b/src/mesa/drivers/osmesa/Makefile.win index a9597c2714a..c754782b52d 100644 --- a/src/mesa/drivers/osmesa/Makefile.win +++ b/src/mesa/drivers/osmesa/Makefile.win @@ -6,32 +6,31 @@ TOP = ..\.. OSMESA_SRCS = osmesa.c OSMESA_OBJS = osmesa.obj -OSMESALIB = OSmesa.lib ASM_SRCS = -CORE_SRCS = $(OSMESA_SRCS) -DRIVER_SRCS = +CORE_SRCS = +DRIVER_SRCS = $(OSMESA_SRCS) SRCS = $(OSMESA_SRCS) -all : osmesalib install +all : osmesalib !include "$(TOP)/mesawin32.mak" -osmesalib : $(OSMESALIB) +osmesalib: $(OSMESALIB) -CFLAGS = $(cvarsdll) $(CFLAGS) -D_OPENGL32_ -I$(TOP)/src +# Undefine _DLL because osmesa is a LIB, not a DLL +CFLAGS = $(cvarsdll) $(CFLAGS) -U_DLL -D_OPENGL32_ -I$(TOP)/src LFLAGS = /LIB OBJS = $(ASM_SRCS:.S=.obj) $(CORE_SRCS:.c=.obj) $(DRIVER_SRCS:.c=.obj) -LIBS = $(TOP)/lib/OpenGL32.lib $(TOP)/src/opengl32.exp +LIBS = $(TOP)/lib/$(MESALIB) $(OSMESALIB) : $(OBJS) $(link) $(LFLAGS) -out:$(OSMESALIB) $(OBJS) $(LIBS) - -install : $(OSMESALIB) @echo "copying OSMesa library to library directory..." -copy $(OSMESALIB) $(TOP)\lib -clean :: - @del /f osmesa.obj +install : $(OSMESALIB) + @echo "copying OSMesa library to system library directory..." + -copy $(OSMESALIB) $(LIBINSTALL) |