view Makefile @ 83:69d7349dc5d3

Render a textured quad with bitmap letter 'A' in the bottom left corner as an additional test - this does not render correctly with Zink (on Intel Haswell at least).
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 09 Mar 2020 09:40:28 +0200
parents cc1c35357e39
children 50a69d327b4f
line wrap: on
line source

###
### Generic UNIX targets
###

#CXXFLAGS ?= -DGL_GLEXT_PROTOTYPES
#LDFLAGS ?=

BINPATH ?= ./
BINEXT ?=
OBJPATH ?= ./obj/unix/

SDL_CFLAGS ?= $(shell pkg-config --cflags sdl2)
SDL_LDFLAGS ?= $(shell pkg-config --libs sdl2)

GL_CFLAGS ?= $(shell pkg-config --cflags gl glu)
GL_LDFLAGS ?= $(shell pkg-config --libs gl glu)

TOOL_LDFLAGS ?=

include Makefile.gen