view Makefile @ 98:44e3656f4c83

Fix help to display correct range for frame numbers.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 25 May 2021 09:46:06 +0300
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