view Makefile @ 99:22774e3f2a89

Add TSAN compile-time support via make parameter TSAN.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 05 Jan 2022 05:37:57 +0200
parents 50a69d327b4f
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