summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
authorGareth Hughes <gareth@valinux.com>2001-05-07 14:06:15 +0000
committerGareth Hughes <gareth@valinux.com>2001-05-07 14:06:15 +0000
commit95d0fe9c11124b9e9c4b2ae5222855c8967278f0 (patch)
tree7cbfd95ed06aefdfae57d00672dfec8843cbf128 /src/mesa/main
parentc329f0824caf6756041516cfee843fc6f6cd3f8a (diff)
More cleanups.
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/Makefile.DJ141
1 files changed, 0 insertions, 141 deletions
diff --git a/src/mesa/main/Makefile.DJ b/src/mesa/main/Makefile.DJ
deleted file mode 100644
index 4eaafa6079..0000000000
--- a/src/mesa/main/Makefile.DJ
+++ /dev/null
@@ -1,141 +0,0 @@
-# $Id: Makefile.DJ,v 1.10 2001/03/28 17:19:58 brianp Exp $
-
-# Mesa 3-D graphics library
-# Version: 3.5
-# Copyright (C) 1995-2001 Brian Paul
-
-# Makefile for core library for MS-DOS using djgpp
-
-
-##### MACROS #####
-
-VPATH = RCS
-
-INCDIR = ..\include
-LIBDIR = ..\lib
-
-# Want UniVBE (Display Doctor) Support, Scitech Software www.scitechsoft.com
-# Set -I to point to scitech include files.
-# Haven`t finished doing univbe version for djgpp
-#CFLAGS += -DUNIVBE -D__DOS__ -D__MSDOS32__ -IC:\scitech\include
-CFLAGS += -D__DOS__ -D__MSDOS32__
-
-CORE_SOURCES = \
- aatriangle.c \
- accum.c \
- alpha.c \
- alphabuf.c \
- attrib.c \
- bbox.c \
- bitmap.c \
- blend.c \
- buffers.c \
- clip.c \
- colortab.c \
- config.c \
- context.c \
- convolve.c \
- copypix.c \
- cva.c \
- debug_xform.c \
- depth.c \
- dispatch.c \
- dlist.c \
- drawpix.c \
- enable.c \
- enums.c \
- eval.c \
- extensions.c \
- feedback.c \
- fog.c \
- get.c \
- glapi.c \
- glthread.c \
- hash.c \
- hint.c \
- image.c \
- imaging.c \
- imports.c \
- light.c \
- lines.c \
- logic.c \
- masking.c \
- matrix.c \
- mem.c \
- mmath.c \
- pb.c \
- pixel.c \
- pixeltex.c \
- pipeline.c \
- points.c \
- polygon.c \
- quads.c \
- rastpos.c \
- readpix.c \
- rect.c \
- scissor.c \
- shade.c \
- span.c \
- stages.c \
- state.c \
- stencil.c \
- teximage.c \
- texobj.c \
- texstate.c \
- texture.c \
- texutil.c \
- translate.c \
- triangle.c \
- varray.c \
- vb.c \
- vbcull.c \
- vbfill.c \
- vbindirect.c \
- vbrender.c \
- vbxform.c \
- vector.c \
- vertices.c \
- winpos.c \
- xform.c \
- zoom.c
-
-
-DRIVER_SOURCES = DOS\dosmesa.c
-
-SOURCES = $(CORE_SOURCES) $(DRIVER_SOURCES)
-
-OBJECTS = $(SOURCES:.c=.o)
-
-#CFLAGS += -g
-
-##### RULES #####
-
-.c.o:
- gcc -c -DDOSVGA -I$(INCDIR) $(CFLAGS) $<
-
-##### TARGETS #####
-
-GL_LIB = dosmesa.a
-
-default: $(LIBDIR)/$(GL_LIB)
-
-clean:
- -del *.o
-
-MAKELIB = AR ruv
-RANLIB = ls
-
-# Make the library
-$(LIBDIR)/$(GL_LIB): $(OBJECTS)
- $(MAKELIB) $(GL_LIB) $(OBJECTS)
- copy $(GL_LIB) $(LIBDIR)\$(GL_LIB)
-
-include depend.dos
-#
-
-# Run 'make depend' to update the dependencies if you change what's included
-# by any source file.
-#
-dep: $(SOURCES)
- makedep -fdepend -Y -I../include $(SOURCES)
-