view src/libeggsmclient/Makefile @ 4671:414966b3a933

clean up some parts that have been made obsolete by nenolod's great work: - removed/restructured headers - moved one function to ui_legacy - removed obsolete comment of mine
author mf0102 <0102@gmx.at>
date Sun, 29 Jun 2008 15:52:18 +0200
parents 171e3b90d718
children d834d2df8d7c
line wrap: on
line source

ifdef PLATFORM_WIN32
platform_sources = eggsmclient-win32.c
platform_defines =
platform_libs =
else
platform_sources = eggsmclient-xsmp.c \
                   eggdesktopfile.c
platform_defines = -DEGG_SM_CLIENT_BACKEND_XSMP ${SM_CFLAGS}
platform_libs = ${SM_LIBS}
endif

STATIC_LIB_NOINST = libeggsmclient.a

SRCS = eggsmclient.c         \
       ${platform_sources}

include ../../buildsys.mk
include ../../extra.mk

CFLAGS += ${INCLUDES} ${GLIB_CFLAGS} ${GTK_CFLAGS} -I../.. -I. ${platform_defines}
LIBS += ${GLIB_LIBS} ${GTK_LIBS} ${platform_libs}
CPPFLAGS += ${CFLAGS}