view Makefile.in @ 76:63bd9ca28be0 0.7.0 alpha1

- added nosuke and iratqq to the authors. - updated README. - minor cleanups.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Sat, 28 Jun 2008 12:37:28 +0900
parents f83b14fbca23
children a132905cece6
line wrap: on
line source

OBJECTIVE = pidgin-twitter.so
SRC = pidgin-twitter.c

PIDGIN_CFLAGS = @PIDGIN_CFLAGS@
GLIB_CFLAGS = @GLIB_CFLAGS@
CFLAGS = -fPIC -shared -Wall $(PIDGIN_CFLAGS) $(GLIB_CFLAGS)

GLIB_LIBS = @GLIB_LIBS@
LDFLAGS = $(GLIB_LIBS)

PIDGIN_PLUGIN_DIR = @PIDGIN_PREFIX@/lib/pidgin


all: $(OBJECTIVE)


$(OBJECTIVE): $(SRC)
	gcc -o $@ $(SRC) $(CFLAGS) $(LDFLAGS) -g 


install: $(OBJECTIVE)
	install -m 755 $(OBJECTIVE) $(PIDGIN_PLUGIN_DIR)


clean:
	rm -f $(OBJECTIVE)


mostlyclean: clean
	rm -f Makefile config.log config.status aclocal.m4 *~
	rm -rf autom4te.cache


maintainer-clean: mostlyclean
	rm -f .hgtags
	rm -rf .hg