view src/libguess/Makefile @ 2691:ecfb79d60c3a trunk

[svn] maintenance of build system: - LIBDEP macro has been introduced as like audacious plugins r1888. - make rules such as $(AR) cq $@ $(OBJECTS) in individual Makefile have been removed. these linkage will be done through objective.mk.
author yaz
date Mon, 30 Apr 2007 20:49:38 -0700
parents 62a93407ce99
children e9f66c3905ec
line wrap: on
line source

include ../../mk/rules.mk
include ../../mk/init.mk

OBJECTIVE_LIBS_NOINST = libguess.a
OBJECTIVE_SONAME_SUFFIX = 0.2.0

LDFLAGS += -Wl,-export-dynamic

CFLAGS += $(PICFLAGS)

SOURCES = \
	guess.c

OBJECTS = ${SOURCES:.c=.o}

include ../../mk/objective.mk