view Makefile @ 80:98e077d9d361

List the keyboard controls in --help.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 07 Mar 2020 14:37:59 +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