Merge vbo_0_1_branch
[mesa.git] / progs / samples / Makefile.mgw
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 # MinGW samples makefile v1.2 for Mesa
24 #
25 # Copyright (C) 2002 - Daniel Borca
26 # Email : dborca@users.sourceforge.net
27 # Web : http://www.geocities.com/dborca
28
29
30 #
31 # Available options:
32 #
33 # Environment variables:
34 #
35 # Targets:
36 # <file.exe> build a specific file
37 #
38
39
40
41 .PHONY: all
42 .SUFFIXES: .c .o .exe
43 .SECONDARY: ../util/readtex.o ../util/showbuffer.o
44
45 TOP = ../..
46
47 CC = mingw32-gcc
48 CFLAGS = -Wall -W -pedantic
49 CFLAGS += -O2 -ffast-math
50 CFLAGS += -I$(TOP)/include -I../util
51 ifeq ($(FX),1)
52 CFLAGS += -DFX
53 endif
54 CFLAGS += -DGLUT_DISABLE_ATEXIT_HACK -D_STDCALL_SUPPORTED
55 CFLAGS += -D_WINDEF_ -D_WINGDI_
56
57 LD = mingw32-g++
58 LDFLAGS = -s -L$(TOP)/lib
59
60 LDLIBS = -lglut32 -lglu32 -lopengl32
61
62 .c.o:
63 $(CC) -o $@ $(CFLAGS) -c $<
64 %.exe: ../util/readtex.o ../util/showbuffer.o %.o
65 $(LD) -o $@ $(LDFLAGS) $^ $(LDLIBS)
66
67 all:
68 $(error Must specify <filename.exe> to build)