view Makefile @ 495:30145d17aebd

Move certain editor related targets to the actual TARGETS variable, and remove them from being separately specified in the "make clean" target, thusly cleaning them only when editor is enabled in build configuration.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 16 Nov 2012 19:18:03 +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