DOS update (Daniel Borca)
[mesa.git] / progs / samples / Makefile.DJ
1 # Mesa 3-D graphics library
2 # Version: 4.0
3 #
4 # Copyright (C) 1999 Brian Paul All Rights Reserved.
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining a
7 # copy of this software and associated documentation files (the "Software"),
8 # to deal in the Software without restriction, including without limitation
9 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 # and/or sell copies of the Software, and to permit persons to whom the
11 # Software is furnished to do so, subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 # BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
20 # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
23 # DOS/DJGPP samples makefile v1.3 for Mesa
24 #
25 # Copyright (C) 2002 - Borca Daniel
26 # Email : dborca@yahoo.com
27 # Web : http://www.geocities.com/dborca
28
29
30 #
31 # Available options:
32 #
33 # Environment variables:
34 # CPU optimize for the given processor.
35 # default = k6
36 # GLIDE path to Glide3 SDK library files; used with FX.
37 # default = $(TOP)/lib/glide3
38 # FX=1 build for 3dfx Glide3. Note that this disables
39 # compilation of most DMesa code and requires fxMesa.
40 # As a consequence, you'll need the DJGPP Glide3
41 # library to build any application.
42 # default = no
43 # DXE=1 use DXE modules. The resolution object file must be
44 # present in the `lib' directory in order to use this
45 # option (see README.DJ for details).
46 # default = no
47 #
48 # Targets:
49 # <file.exe> build a specific file
50 #
51
52
53
54 .PHONY : all
55 .SUFFIXES : .c .o .exe
56
57 TOP = ..
58 CPU ?= k6
59 GLIDE ?= $(TOP)/lib/glide3
60
61 CC = gcc
62 CFLAGS = -Wall -W -pedantic
63 CFLAGS += -O2 -ffast-math -mcpu=$(CPU)
64 CFLAGS += -I$(TOP)/include
65
66 LD = gxx
67 LDFLAGS = -s -L$(TOP)/lib
68
69 ifeq ($(DXE),1)
70 DMESADXE = $(TOP)/lib/dmesadxe.o
71 LDLIBS += -liglut -liglu -ligl -ldl
72 else
73 LDLIBS = -lglut -lglu -lgl
74 ifeq ($(FX),1)
75 LDFLAGS += -L$(GLIDE)
76 LDLIBS += -lglid3
77 endif
78 endif
79
80 .c.o:
81 $(CC) -o $@ $(CFLAGS) -c $<
82 .o.exe:
83 $(LD) -o $@ $(LDFLAGS) $(DMESADXE) $< $(LDLIBS)
84
85 all:
86 $(error Must specify <filename.exe> to build)