view Makefile @ 96:50a69d327b4f

Remove support for GL_GLEXT_PROTOTYPES.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 25 May 2021 02:35:14 +0300
parents cc1c35357e39
children 10adf567b6f2
line wrap: on
line source

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

#CXXFLAGS ?=
#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