Fix a few conversion bugs. For example, GLshort->GLfloat conversion
[mesa.git] / src / glut / dos / Makefile.DJ
index 698c80ce3c0163028a70017d5c8c6b8492d27018..7e4e0b8576a508102174d77a9b1806c938af2a0e 100644 (file)
-# Mesa 3-D graphics library\r
-# Version:  4.0\r
-# \r
-# Copyright (C) 1999  Brian Paul   All Rights Reserved.\r
-# \r
-# Permission is hereby granted, free of charge, to any person obtaining a\r
-# copy of this software and associated documentation files (the "Software"),\r
-# to deal in the Software without restriction, including without limitation\r
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,\r
-# and/or sell copies of the Software, and to permit persons to whom the\r
-# Software is furnished to do so, subject to the following conditions:\r
-# \r
-# The above copyright notice and this permission notice shall be included\r
-# in all copies or substantial portions of the Software.\r
-# \r
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS\r
-# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL\r
-# BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN\r
-# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
-# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
-\r
-# DOS/DJGPP glut makefile v1.1 for Mesa 4.0\r
-#\r
-#  Copyright (C) 2002 - Borca Daniel\r
-#  Email : dborca@yahoo.com\r
-#  Web   : http://www.geocities.com/dborca\r
-\r
-\r
-#\r
-#  Available options:\r
-#\r
-#    Environment variables:\r
-#      CFLAGS\r
-#\r
-#      GLIDE           absolute path to Glide SDK; used with FX.\r
-#                      default = $(TOP)/include/glide3\r
-#      FX=1            build for 3dfx Glide3; use it if you have the glide\r
-#                      SDK (designed for your platform), and, of course, a\r
-#                      3dfx card... Note that this disables compilation of\r
-#                      actual DMesa code, as Glide does all the stuff!\r
-#                      default = no\r
-#      MARK            absolute path to original GLUT.\r
-#                      default = $(TOP)/src-glut\r
-#\r
-#    Targets:\r
-#      all:            build GLUT\r
-#      clean:          remove object files\r
-#\r
-\r
-\r
-\r
-.PHONY: all clean\r
-\r
-TOP = ..\r
-GLIDE ?= $(TOP)/include/glide3\r
-MARK ?= $(TOP)/src-glut\r
-LIBDIR = $(TOP)/lib\r
-GLUT_LIB = libglut.a\r
-GLUT_DXE = glut.dxe\r
-GLUT_IMP = libiglut.a\r
-\r
-CC = gcc\r
-CFLAGS += -I$(TOP)/include -I$(MARK)\r
-ifdef FX\r
-CFLAGS += -D__DOS__ -I$(GLIDE) -DFX -DFX_GLIDE3 -DFXMESA_USE_ARGB\r
-endif\r
-\r
-AR = ar\r
-ARFLAGS = ru\r
-\r
-ifneq ($(wildcard $(DJDIR)/lib/dxe2.ld),)\r
-DXE2GEN = $(wildcard $(addsuffix /dxe2gen.exe,$(subst ;, ,$(PATH))))\r
-endif\r
-\r
-RM = del\r
-\r
-CORE_SOURCES = \\r
-       bitmap.c \\r
-       callback.c \\r
-       color.c \\r
-       globals.c \\r
-       init.c \\r
-       menu.c \\r
-       models.c \\r
-       overlay.c \\r
-       state.c \\r
-       teapot.c \\r
-       window.c\r
-\r
-PC_HW_SOURCES = \\r
-       PC_HW/pc_hw.c \\r
-       PC_HW/pc_keyb.c \\r
-       PC_HW/pc_mouse.c \\r
-       PC_HW/pc_timer.c \\r
-       PC_HW/pc_irq.S\r
-\r
-MARK_SOURCES = \\r
-       $(MARK)/glut_8x13.c \\r
-       $(MARK)/glut_9x15.c \\r
-       $(MARK)/glut_hel10.c \\r
-       $(MARK)/glut_hel12.c \\r
-       $(MARK)/glut_hel18.c \\r
-       $(MARK)/glut_tr10.c \\r
-       $(MARK)/glut_tr24.c\r
-\r
-SOURCES = $(CORE_SOURCES) $(PC_HW_SOURCES) $(MARK_SOURCES)\r
-\r
-OBJECTS = $(addsuffix .o,$(basename $(SOURCES)))\r
-\r
-.c.o:\r
-       $(CC) -o $@ -c $(CFLAGS) $<\r
-.S.o:\r
-       $(CC) -o $@ -c $(CFLAGS) $<\r
-.s.o:\r
-       $(CC) -o $@ -c $(CFLAGS) -x assembler-with-cpp $<\r
-\r
-all: $(LIBDIR)/$(GLUT_LIB) $(LIBDIR)/$(GLUT_DXE) $(LIBDIR)/$(GLUT_IMP)\r
-\r
-$(LIBDIR)/$(GLUT_LIB): $(OBJECTS)\r
-       $(AR) $(ARFLAGS) $(LIBDIR)/$(GLUT_LIB) $(OBJECTS)\r
-\r
-$(LIBDIR)/$(GLUT_DXE) $(LIBDIR)/$(GLUT_IMP): $(OBJECTS)\r
-ifeq ($(DXE2GEN),)\r
-       $(warning Missing DXE2GEN and/or DXE2.LD! You must have DXE2GEN)\r
-       $(warning somewhere in PATH, and DXE2.LD in DJGPP/LIB directory.)\r
-else\r
-       -dxe2gen -o $(LIBDIR)/$(GLUT_DXE) -I $(LIBDIR)/$(GLUT_IMP) $(OBJECTS) -E djgpp_ -E glut -D "Mesa DJGPP GLUT" -U\r
-endif\r
-\r
-clean:\r
-       -$(RM) $(subst /,\,*.o)\r
-       -$(RM) $(subst /,\,PC_HW/*.o)\r
-       -$(RM) $(subst /,\,$(MARK)/*.o)\r
-\r
--include depend\r
+# DOS/DJGPP Mesa Utility Toolkit
+# Version:  1.0
+#
+# Copyright (C) 2005  Daniel Borca   All Rights Reserved.
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# DANIEL BORCA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+#
+#  Available options:
+#
+#    Environment variables:
+#      CFLAGS
+#
+#      GLIDE           path to Glide3 SDK; used to resolve DXEs.
+#                      default = $(TOP)/glide3
+#
+#    Targets:
+#      all:            build GLUT
+#      clean:          remove object files
+#
+
+
+
+.PHONY: all clean
+
+TOP = ../../..
+GLIDE ?= $(TOP)/glide3
+LIBDIR = $(TOP)/lib
+GLUT_LIB = libglut.a
+GLUT_DXE = glut.dxe
+GLUT_IMP = libiglut.a
+
+export LD_LIBRARY_PATH := $(LD_LIBRARY_PATH);$(LIBDIR);$(GLIDE)/lib
+
+CC = gcc
+CFLAGS += -I$(TOP)/include -I. -IPC_HW
+CFLAGS += -DGLUT_IMPORT_LIB
+
+AR = ar
+ARFLAGS = crus
+
+HAVEDXE3 = $(wildcard $(DJDIR)/bin/dxe3gen.exe)
+
+ifeq ($(wildcard $(addsuffix /rm.exe,$(subst ;, ,$(PATH)))),)
+UNLINK = del $(subst /,\,$(1))
+else
+UNLINK = $(RM) $(1)
+endif
+
+CORE_SOURCES = \
+       loop.c \
+       callback.c \
+       color.c \
+       extens.c \
+       init.c \
+       menu.c \
+       mouse.c \
+       overlay.c \
+       state.c \
+       util.c \
+       window.c \
+       f8x13.c \
+       f9x15.c \
+       hel10.c \
+       hel12.c \
+       hel18.c \
+       tr10.c \
+       tr24.c \
+       mroman.c \
+       roman.c \
+       bitmap.c \
+       stroke.c \
+       teapot.c \
+       shapes.c
+
+PC_HW_SOURCES = \
+       PC_HW/pc_hw.c \
+       PC_HW/pc_keyb.c \
+       PC_HW/pc_mouse.c \
+       PC_HW/pc_timer.c \
+       PC_HW/pc_irq.S
+
+SOURCES = $(CORE_SOURCES) $(PC_HW_SOURCES)
+
+OBJECTS = $(addsuffix .o,$(basename $(SOURCES)))
+
+.c.o:
+       $(CC) -o $@ $(CFLAGS) -c $<
+.S.o:
+       $(CC) -o $@ $(CFLAGS) -c $<
+.s.o:
+       $(CC) -o $@ $(CFLAGS) -x assembler-with-cpp -c $<
+
+all: $(LIBDIR)/$(GLUT_LIB) $(LIBDIR)/$(GLUT_DXE) $(LIBDIR)/$(GLUT_IMP)
+
+$(LIBDIR)/$(GLUT_LIB): $(OBJECTS)
+       $(AR) $(ARFLAGS) $@ $^
+
+$(LIBDIR)/$(GLUT_DXE) $(LIBDIR)/$(GLUT_IMP): $(OBJECTS)
+ifeq ($(HAVEDXE3),)
+       $(warning Missing DXE3 package... Skipping $(GLUT_DXE))
+else
+       -dxe3gen -o $(LIBDIR)/$(GLUT_DXE) -Y $(LIBDIR)/$(GLUT_IMP) -D "MesaGLUT DJGPP" -E _glut -P gl.dxe -U $^
+endif
+
+clean:
+       -$(call UNLINK,*.o)
+       -$(call UNLINK,PC_HW/*.o)
+
+-include depend