view Makefile @ 449:117f94b253af

Add support for CAMG chunk reading and possibly half-brite handling in IFF ILBM reader.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 04 Nov 2012 09:11:57 +0200
parents e88b2993801c
children e1526854e735
line wrap: on
line source

#
# Generic UNIX targets
#
SDL_CFLAGS=`sdl-config --cflags`
SDL_LDFLAGS=`sdl-config --static-libs`

TREMOR_CFLAGS=-I/usr/local/lib/
TREMOR_LDFLAGS=/usr/local/lib/libvorbisidec.a /usr/lib/i386-linux-gnu/libogg.a

LIBPNG_CFLAGS=`pkg-config --cflags libpng`
LIBPNG_LDFLAGS=`pkg-config --libs libpng`

ZLIB_CFLAGS=`pkg-config --cflags zlib`
ZLIB_LDFLAGS=`pkg-config --libs zlib`

RANLIB=ranlib

DMLIB = ./
BINPATH ?= 
OBJPATH ?= ./unix/
EXEEXT ?=

include $(DMLIB)Makefile.gen