view Makefile @ 102:2b22a89dd811

Add program information and copyright blurb in help.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 06 Oct 2022 05:01:45 +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